Instruct TravisCI to install coverage report tool.
This commit is contained in:
parent
6b82da13b4
commit
755944738a
1 changed files with 5 additions and 2 deletions
|
@ -2,8 +2,11 @@ language: go
|
||||||
go:
|
go:
|
||||||
- release
|
- release
|
||||||
- tip
|
- tip
|
||||||
install: go get -d -t -v ./...
|
install:
|
||||||
script: go test -v -covermode=count -coverprofile=profile.cov
|
- 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:
|
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
|
||||||
|
|
Loading…
Reference in a new issue