From bbafeb9abdb4a8a7c29e2a285a6289b78226249a Mon Sep 17 00:00:00 2001 From: Vishal Rana Date: Sun, 29 Mar 2015 16:22:08 -0700 Subject: [PATCH] Changed travis config Signed-off-by: Vishal Rana --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e08312d3..675044e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,11 @@ language: go go: - tip before_install: - - go get github.com/axw/gocov/gocov + - go get github.com/modocache/gover - go get github.com/mattn/goveralls - go get golang.org/x/tools/cmd/cover script: - - $HOME/gopath/bin/goveralls -service=travis-ci + - go test -coverprofile=echo.coverprofile + - go test -coverprofile=mw.coverprofile ./middleware + - $HOME/gopath/bin/gover + - $HOME/gopath/bin/goveralls -coverprofile=gover.coverprofile -service=travis-ci