diff --git a/.gitignore b/.gitignore index fe57dd391..7596c58be 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ build/ TODO circleci-cli +coverage.txt diff --git a/Makefile b/Makefile index d8d7174c9..f3b289b0e 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ test: go test -v -short ./... .PHONY: cover -coverage: +cover: go test -coverprofile=coverage.txt -covermode=count ./... .PHONY: lint