forked from TrueCloudLab/distribution
Ignore Godeps for gofmt and golint
Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
parent
fc2a840e8f
commit
01bc08351d
1 changed files with 2 additions and 2 deletions
|
@ -68,7 +68,7 @@ test:
|
|||
# - gvm use bleed && go version
|
||||
|
||||
# FMT
|
||||
- gvm use stable && test -z "$(gofmt -s -l . | tee /dev/stderr)":
|
||||
- gvm use stable && test -z "$(gofmt -s -l . | grep -v Godeps/_workspace/src/ | tee /dev/stderr)":
|
||||
pwd: $BASE_STABLE
|
||||
|
||||
# VET
|
||||
|
@ -76,7 +76,7 @@ test:
|
|||
pwd: $BASE_STABLE
|
||||
|
||||
# LINT
|
||||
- gvm use stable && test -z "$(golint ./... | tee /dev/stderr)":
|
||||
- gvm use stable && test -z "$(golint ./... | grep -v Godeps/_workspace/src/ | tee /dev/stderr)":
|
||||
pwd: $BASE_STABLE
|
||||
|
||||
override:
|
||||
|
|
Loading…
Reference in a new issue