Skip to content

Commit

Permalink
renamed the coverage output file to testcoverage.out
Browse files Browse the repository at this point in the history
  • Loading branch information
leonsteinhaeuser committed Jul 29, 2020
1 parent 12faf11 commit fb2e27a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ apitest_report.json
*.code-workspace
*.vscode
*.sh
./output.out
output.out
testcoverage.out
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ test: fmt vet
go test -race -cover ./...

webtest:
go test -coverprofile=output.out
go tool cover -html=output.out
go test -coverprofile=testcoverage.out
go tool cover -html=testcoverage.out

apitest:
./apitest --stop-on-fail -d test/
Expand Down

0 comments on commit fb2e27a

Please sign in to comment.