From 8942c8c5667c6c086ac5c7e7144e5c73ab7ff4c4 Mon Sep 17 00:00:00 2001 From: Carl Jackson Date: Sun, 23 Nov 2014 14:12:38 -0800 Subject: [PATCH] Fix build This is pretty frustrating: it doesn't look like it's going to be easy to get the "cover" tool to work across both 1.3 and 1.4, since they aren't able to agree on where to install the tool from. I'm sure there's a way to work around this, but in the meantime let's just disable coverage testing entirely. --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index e991787..493b209 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,6 @@ go: install: - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v - - go get golang.org/x/tools/cmd/cover - go build -v ./... script: - - go test -v -cover ./... + - go test -v ./...