1
0
mirror of https://github.com/distribution/distribution synced 2024-11-06 19:35:52 +01:00

Merge pull request #838 from BrianBland/ng-circle

Re-enables "go vet" in circle.yml
This commit is contained in:
Olivier Gambier 2014-12-10 15:34:15 -08:00
commit e1e026418c

@ -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.