Skip to content

Commit

Permalink
ignoring alexa validation service
Browse files Browse the repository at this point in the history
  • Loading branch information
daithihearn committed Dec 10, 2023
1 parent f603a4c commit 4223a35
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ docs: #@ Generate docs
.PHONY:docs
test: fmt vet #@ Run tests
go test -coverprofile=coverage-full.out ./...
grep -v "_mocks.go" coverage-full.out | grep -v "handlers.go" | grep -v "collection.go" > coverage.out
grep -v "_mocks.go" coverage-full.out | grep -v "handlers.go" | grep -v "collection.go" | grep -v "alexa-validation-service.go" > coverage.out
go tool cover -html=coverage.out -o coverage.html
.PHONY:test
fmt: #@ Format the code
Expand Down
2 changes: 1 addition & 1 deletion cmd/api/main.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @title Electricity Prices API
// @version 2.1.22
// @version 2.1.23
// @description Returns PVPC electricity prices for a given range
// @BasePath /api/v1
package main
Expand Down
1 change: 1 addition & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ codecov:
- "*/**/*_mocks.go"
- "*/**/*handlers.go"
- "*/**/*collection.go"
- "*/**/alexa-validation-service.go"
2 changes: 1 addition & 1 deletion docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ const docTemplate = `{

// SwaggerInfo holds exported Swagger Info so clients can modify it
var SwaggerInfo = &swag.Spec{
Version: "2.1.22",
Version: "2.1.23",
Host: "",
BasePath: "/api/v1",
Schemes: []string{},
Expand Down
2 changes: 1 addition & 1 deletion docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Returns PVPC electricity prices for a given range",
"title": "Electricity Prices API",
"contact": {},
"version": "2.1.22"
"version": "2.1.23"
},
"basePath": "/api/v1",
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ info:
contact: {}
description: Returns PVPC electricity prices for a given range
title: Electricity Prices API
version: 2.1.22
version: 2.1.23
paths:
/alexa:
get:
Expand Down

0 comments on commit 4223a35

Please sign in to comment.