diff --git a/go.test.sh b/go.test.sh index dd9425d..de84e0a 100755 --- a/go.test.sh +++ b/go.test.sh @@ -3,7 +3,7 @@ set -e echo "" > coverage.txt -for d in $(go list ./... | grep -v vendor); do +for d in $(go list ./... | grep -v linters); do go test -coverprofile=profile.out -covermode=atomic $d if [ -f profile.out ]; then cat profile.out >> coverage.txt