Add test-coverage & codecov target and update circleci

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester
2017-05-18 10:48:24 +02:00
committed by Daniel Nephin
parent 883d28cfce
commit d79d903864
4 changed files with 17 additions and 2 deletions

View File

@ -14,6 +14,19 @@ clean:
test:
go test -tags daemon -v $(shell go list ./... | grep -v /vendor/)
.PHONY: test-coverage
test-coverage:
for pkg in $(shell go list ./... | grep -v /vendor/); do \
go test -tags daemon -v -cover -parallel 8 -coverprofile=profile.out -covermode=atomic $${pkg} || exit 1; \
if test -f profile.out; then \
cat profile.out >> coverage.txt && rm profile.out; \
fi; \
done
.PHONY: codecov
codecov:
$(shell curl -s https://codecov.io/bash | bash)
.PHONY: lint
lint:
gometalinter --config gometalinter.json ./...