From 755944738a3abf64dcdc0f1d26f80506af926d05 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Sat, 19 Apr 2014 14:41:52 -0500 Subject: [PATCH] Instruct TravisCI to install coverage report tool. --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9c1637bc..7759ad70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,11 @@ language: go go: - release - tip -install: go get -d -t -v ./... -script: go test -v -covermode=count -coverprofile=profile.cov +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