diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-18 00:53:24 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-18 00:53:24 +0800 |
commit | 5c958ec5f658709b648647449ce5349aa98b3d5d (patch) | |
tree | 07e1c83ef48c71b60a81dd8c0f730f13ca0a5b58 /.travis.yml | |
parent | 2a5af8fac72846a7354dd79143727bac4ee89cb9 (diff) | |
download | go-tangerine-5c958ec5f658709b648647449ce5349aa98b3d5d.tar.gz go-tangerine-5c958ec5f658709b648647449ce5349aa98b3d5d.tar.zst go-tangerine-5c958ec5f658709b648647449ce5349aa98b3d5d.zip |
Undo running `go vet` in travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index d3c4e95a5..ebb631969 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ before_install: install: - go get code.google.com/p/go.tools/cmd/goimports - go get github.com/golang/lint/golint - - go get code.google.com/p/go.tools/cmd/vet + # - go get code.google.com/p/go.tools/cmd/vet - go get code.google.com/p/go.tools/cmd/cover - go get github.com/mattn/goveralls - ./install_deps.sh @@ -16,7 +16,7 @@ before_script: - gofmt -l -w . - goimports -l -w . - golint . - - go vet ./... + # - go vet ./... # - go test -race ./... script: - ./gocoverage.sh |