Instruct TravisCI to install coverage report tool.

This commit is contained in:
Dave Collins 2014-04-19 14:41:52 -05:00
parent 6b82da13b4
commit 755944738a

View file

@ -2,8 +2,11 @@ language: go
go:
- release
- tip
install: go get -d -t -v ./...
script: go test -v -covermode=count -coverprofile=profile.cov
install:
- go get -d -t -v ./...
- go get -v code.google.com/p/go.tools/cmd/cover
script:
- go test -v -covermode=count -coverprofile=profile.cov
after_success:
- go get -v github.com/mattn/goveralls
- export PATH=$PATH:$HOME/gopath/bin