Skip to content

Commit 2ca4251

Browse files
committed
tests: turn off coverage checks for test_helpers
1 parent 2adeae4 commit 2ca4251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ test-main:
108108
coverage:
109109
go clean -testcache
110110
go get golang.org/x/tools/cmd/cover
111-
go test -tags "$(TAGS)" ./... -v -p 1 -covermode=atomic -coverprofile=$(COVERAGE_FILE)
111+
go test -tags "$(TAGS)" $(go list ./... | grep -v test_helpers) -v -p 1 -covermode=atomic -coverprofile=$(COVERAGE_FILE)
112112
go tool cover -func=$(COVERAGE_FILE)
113113

114114
.PHONY: coveralls

0 commit comments

Comments
 (0)