From 2d30de540ad068d20bcbfb68ad0fc75485411f18 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Thu, 27 Mar 2014 05:04:48 -0500 Subject: [PATCH] Configure TravisCI goveralls call correctly. By default goveralls tries to use gocov. This modifies it to use the cover profile provided by go test instead. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2633c21..3217c00 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,4 +8,4 @@ after_success: - go get -v github.com/mattn/goveralls - export PATH=$PATH:$HOME/gopath/bin - cd ./spew - - goveralls -v -service travis-ci + - goveralls coverprofile=profile.cov -service=travis-ci