diff --git a/.travis.yml b/.travis.yml index 499ef6c6..4c038565 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ go: - tip install: - go get -d -t -v ./... - - ./get_ci_cover.sh + - go get -v golang.org/x/tools/cmd/cover script: - go test -v -covermode=count -coverprofile=profile.cov after_success: diff --git a/get_ci_cover.sh b/get_ci_cover.sh deleted file mode 100755 index 0aaaba51..00000000 --- a/get_ci_cover.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env sh - -set -x -if [ "$TRAVIS_GO_VERSION" = "tip" ]; then - go get -v golang.org/x/tools/cmd/cover -else - go get -v code.google.com/p/go.tools/cmd/cover -fi