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 1193627 commit a804f0eCopy full SHA for a804f0e
Makefile
@@ -126,6 +126,9 @@ test: fmt-check
126
127
.PHONY: test-coverage
128
test-coverage: unit-test-coverage integration-test-coverage
129
+ @hash gocovmerge > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
130
+ go get -u github.com/wadey/gocovmerge; \
131
+ fi
132
for PKG in $(PACKAGES); do\
133
touch $$GOPATH/src/$$PKG/coverage.out;\
134
egrep "$$PKG[^/]*\.go" integration.coverage.out > int.coverage.out;\
0 commit comments