summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorArthur Axel 'fREW' Schmidt <frioux@gmail.com>2014-06-08 17:55:34 -0500
committerJakob Borg <jakob@nym.se>2014-06-10 17:05:15 +0200
commit70fc8a30644d521ac759c67fc564a57799bbe510 (patch)
tree5bdbad082bca3ed9d6cd02f32fc1c1d863912220 /.travis.yml
parent7626c5d526822b4862a9dedbed2af8c25f7c6c72 (diff)
push test coverage info to coveralls.io
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 2f33c4f6a4..69a3ee5b88 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,6 +7,11 @@ go:
install:
- export PATH=$PATH:$HOME/gopath/bin
- ./build.sh setup
+ - go get code.google.com/p/go.tools/cmd/cover
+ - go get github.com/mattn/goveralls
script:
- - ./build.sh test
+ - ./build.sh test-cov
+
+after_success:
+ - goveralls -coverprofile=acc.out -service=travis-ci