Browse Source

Use new "cover" path

The official "cover" package has moved, and Go 1.4 will start enforcing
canonical imports.
Carl Jackson 11 years ago
parent
commit
2b08b90ead
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      .travis.yml

+ 1
- 1
.travis.yml View File

@ -6,7 +6,7 @@ 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 code.google.com/p/go.tools/cmd/cover
- go get golang.org/x/tools/cmd/cover
- go build -v ./... - go build -v ./...
script: script:
- go test -v -cover ./... - go test -v -cover ./...

Loading…
Cancel
Save