aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 834305f..d364193 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,7 @@ static-check: FORCE
benchmark: FORCE
@cd benchmark && go test -bench . -benchmem .
-GO_COVERPKGS := $(shell go list ./... | tr '\n' , | sed 's/,$$//')
+GO_COVERPKGS := $(shell go list ./... | grep -vw testhelpers | tr '\n' , | sed 's/,$$//')
GO_TESTPKGS := $(shell go list -f '{{if or .TestGoFiles .XTestGoFiles}}{{.ImportPath}}{{end}}' ./...)
build/cover.out: FORCE