go get github.com/wadey/gocovmerge when needed (#2235)

This commit is contained in:
Antoine GIRARD 2017-07-31 03:29:50 +02:00 committed by Lunny Xiao
parent 1193627014
commit a804f0e052
1 changed files with 3 additions and 0 deletions

View File

@ -126,6 +126,9 @@ test: fmt-check
.PHONY: test-coverage
test-coverage: unit-test-coverage integration-test-coverage
@hash gocovmerge > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
go get -u github.com/wadey/gocovmerge; \
fi
for PKG in $(PACKAGES); do\
touch $$GOPATH/src/$$PKG/coverage.out;\
egrep "$$PKG[^/]*\.go" integration.coverage.out > int.coverage.out;\