We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3439a34 commit ed91725Copy full SHA for ed91725
Makefile
@@ -20,7 +20,8 @@ testrace:
20
.PHONY: coverage
21
coverage:
22
@echo "Running tests with coveralls"
23
- go test -tags "$(TAGS)" $(go list ./... | grep -v test_helpers) -v -p 1 -covermode=atomic -coverprofile=$(COVERAGE_FILE) -count=1
+ go test -tags "$(TAGS)" $(shell go list ./... | grep -v test_helpers) \
24
+ -v -p 1 -covermode=atomic -coverprofile=$(COVERAGE_FILE) -count=1
25
go tool cover -func=$(COVERAGE_FILE)
26
27
.PHONY: coveralls
0 commit comments