From fb2e27a49eeb6ffa6bd85ed4c83bf72c88382cdc Mon Sep 17 00:00:00 2001 From: leonsteinhaeuser Date: Wed, 29 Jul 2020 13:45:04 +0200 Subject: [PATCH] renamed the coverage output file to testcoverage.out --- .gitignore | 3 ++- Makefile | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 285b229..c409a78 100644 --- a/.gitignore +++ b/.gitignore @@ -19,4 +19,5 @@ apitest_report.json *.code-workspace *.vscode *.sh -./output.out +output.out +testcoverage.out diff --git a/Makefile b/Makefile index 4c54157..fc8807c 100644 --- a/Makefile +++ b/Makefile @@ -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/