Skip to content

Commit

Permalink
Setup TravisCI to report cov stats to coveralls.io.
Browse files Browse the repository at this point in the history
  • Loading branch information
davecgh committed Aug 10, 2014
1 parent e6011ea commit cdc91dd
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .travis.yml
@@ -1,3 +1,11 @@
language: go
go: release
install: go get -d -t -v ./...
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
- goveralls -coverprofile=profile.cov -service=travis-ci

0 comments on commit cdc91dd

Please sign in to comment.