From f193a3ae038d5b0ba19871e6fe78077002415f0e Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Tue, 21 Jun 2016 19:11:46 -0700 Subject: [PATCH] Switch from coveralls to codecov --- .travis.yml | 4 +--- Makefile | 4 ---- 2 files changed, 1 insertion(+), 7 deletions(-) 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}'