lbcd/.travis.yml
Dave Collins 41dce5796d Update to coveralls.io for test coverage reporting.
Also add a test coverage badge to the README.md.
2014-06-12 18:44:34 -05:00

13 lines
343 B
YAML

language: go
go:
- release
- tip
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