Browse Source

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.
Carl Jackson 11 years ago
parent
commit
8942c8c566
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      .travis.yml

+ 1
- 2
.travis.yml View File

@ -6,7 +6,6 @@ go:
install: install:
- go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
- go list -f '{{range .TestImports}}{{.}} {{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 ./... - go build -v ./...
script: script:
- go test -v -cover ./...
- go test -v ./...

Loading…
Cancel
Save