From 40d328967b8e1c3b407dc9f7077760facf582f0d Mon Sep 17 00:00:00 2001 From: Sebastian Zagrodzki Date: Thu, 9 Mar 2017 12:31:14 -0500 Subject: [PATCH] Run all tests. I'll mark the always-failing tests as skipped. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 41ef5cf..87ec5cc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,5 +22,5 @@ install: script: # a workaround for go test not supporting coverage for multiple packages in a single invocation - |- - echo 'mode: count' > coverage.merged && go list ./... | xargs -n1 -I{} sh -c ': > coverage.tmp; go test -covermode=count -coverprofile=coverage.tmp -test.run="BCD|Parse" {} && tail -n +2 coverage.tmp >> coverage.merged' && rm coverage.tmp + echo 'mode: count' > coverage.merged && go list ./... | xargs -n1 -I{} sh -c ': > coverage.tmp; go test -covermode=count -coverprofile=coverage.tmp {} && tail -n +2 coverage.tmp >> coverage.merged' && rm coverage.tmp - $HOME/gopath/bin/goveralls -coverprofile=coverage.merged -service=travis-ci -repotoken $COVERALLS_TOKEN