From 750df1644a25e0272aeb220b5ceb10d56a07e471 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 30 Oct 2017 01:20:26 +0100 Subject: [PATCH] Fixed converalls --- .travis.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 30d3098..ca74167 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,7 @@ language: go go: - 1.9.2 -env: - global: - - COVERALLS_TOKEN=lhWzILT1WMRgrHXsEhauQOGsoby1nm7DR script: - - go get golang.org/x/tools/cmd/cover - - go get github.com/modocache/gover - go get github.com/mattn/goveralls - - go test -v ./... - - gover - - goveralls -coverprofile=gover.coverprofile -service travis-ci -repotoken $COVERALLS_TOKEN \ No newline at end of file + - go test -v -covermode=count -coverprofile=coverage.out ./... + - goveralls -coverprofile=coverage.out -service travis-ci -repotoken lhWzILT1WMRgrHXsEhauQOGsoby1nm7DR \ No newline at end of file