Configure TravisCI goveralls call correctly.

By default goveralls tries to use gocov.  This modifies it to use the
cover profile provided by go test instead.
This commit is contained in:
Dave Collins 2014-03-27 05:04:48 -05:00
parent 8ae4f2591e
commit 2d30de540a
1 changed files with 1 additions and 1 deletions

View File

@ -8,4 +8,4 @@ after_success:
- go get -v github.com/mattn/goveralls - go get -v github.com/mattn/goveralls
- export PATH=$PATH:$HOME/gopath/bin - export PATH=$PATH:$HOME/gopath/bin
- cd ./spew - cd ./spew
- goveralls -v -service travis-ci - goveralls coverprofile=profile.cov -service=travis-ci