diff --git a/Makefile b/Makefile index fd76bca..11f945b 100644 --- a/Makefile +++ b/Makefile @@ -138,3 +138,4 @@ lint-check-deps: @gometalinter.v1 --install >/dev/null test: + go test -cover ./... diff --git a/coverage.sh b/coverage.sh index e8285da..d91f8fa 100644 --- a/coverage.sh +++ b/coverage.sh @@ -4,7 +4,7 @@ set -e echo "" > coverage.txt for d in $(go list ./... | grep -v vendor); do - go test -race -coverprofile=profile.out -covermode=atomic $d + go test -v -race -coverprofile=profile.out -covermode=atomic $d if [ -f profile.out ]; then cat profile.out >> coverage.txt rm profile.out