add collect codecov report

pull/5/head
max furman 6 years ago
parent 925f1b21b4
commit 72693a549b

@ -1,9 +1,14 @@
language: go
go:
- 1.11.x
env:
global:
- V=1
before_script:
- make bootstrap
script:
- make
after_success:
- bash <(curl -s https://codecov.io/bash) -t "$CODECOV_TOKEN" || echo "Codecov did not collect coverage reports"
notifications:
email: false

@ -93,12 +93,12 @@ generate:
# Test
#########################################
test:
$Q $(GOFLAGS) go test -short -cover ./...
$Q $(GOFLAGS) go test -short -coverprofile=coverage.out ./...
vtest:
$(Q)for d in $$(go list ./... | grep -v vendor); do \
echo -e "TESTS FOR: for \033[0;35m$$d\033[0m"; \
$(GOFLAGS) go test -v -bench=. -run=. -short -coverprofile=profile.coverage.out -covermode=atomic $$d; \
$(GOFLAGS) go test -v -bench=. -run=. -short -coverprofile=coverage.out $$d; \
out=$$?; \
if [[ $$out -ne 0 ]]; then ret=$$out; fi;\
rm -f profile.coverage.out; \

Loading…
Cancel
Save