diff --git a/.travis.yml b/.travis.yml index 423e9cc..68eb960 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,14 +9,12 @@ go: before_install: - go get github.com/Masterminds/glide - - go get github.com/mattn/goveralls - - go get golang.org/x/tools/cmd/cover script: - make test after_success: - - make coveralls + - bash <(curl -s https://codecov.io/bash) env: global: diff --git a/Makefile b/Makefile index bb55bcf..f994d61 100644 --- a/Makefile +++ b/Makefile @@ -27,10 +27,6 @@ bindata: ## Regenerates bindata.go with an updated configuration file. @go get -u github.com/jteeuwen/go-bindata/... @go-bindata config.yaml -.PHONY: coveralls -coveralls: ## Performs coveralls tests. - @goveralls -service=travis-ci . - .PHONY: help help: ## Shows this helptext. @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'