From d9c2203f9f39b8f2feceba21b9eaed1702e0f5eb Mon Sep 17 00:00:00 2001 From: Brian Bland Date: Wed, 10 Dec 2014 15:27:19 -0800 Subject: [PATCH] Re-enables "go vet" in circle.yml --- circle.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/circle.yml b/circle.yml index c5ce9b08d..88125a8de 100644 --- a/circle.yml +++ b/circle.yml @@ -19,13 +19,8 @@ test: - go version override: - test -z $(gofmt -s -l . | tee /dev/stderr) - - # 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) + - go vet ./... + - test -z $(golint ./... | tee /dev/stderr) - go test -test.v -test.short ./... # Disabling the race detector due to massive memory usage.