Re-enables "go vet" in circle.yml

This commit is contained in:
Brian Bland 2014-12-10 15:27:19 -08:00
parent c7dc83442b
commit d9c2203f9f

View file

@ -19,12 +19,7 @@ test:
- go version - go version
override: override:
- test -z $(gofmt -s -l . | tee /dev/stderr) - test -z $(gofmt -s -l . | tee /dev/stderr)
- go vet ./...
# TODO(stevvooe): go vet is complaining about something that can't be
# reproduced locally and doesn't make sense based on the existing code.
# Turning it off for now.
# - go vet ./...
- test -z $(golint ./... | tee /dev/stderr) - test -z $(golint ./... | tee /dev/stderr)
- go test -test.v -test.short ./... - go test -test.v -test.short ./...