Switch from coveralls to codecov

pull/153/head
Matthieu Grieger 2016-06-21 19:11:46 -07:00
parent c9f8ff74ca
commit f193a3ae03
2 changed files with 1 additions and 7 deletions

View File

@ -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:

View File

@ -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}'