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
|
# - gvm use bleed && go version
|
||||||
|
|
||||||
# FMT
|
# 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
|
pwd: $BASE_STABLE
|
||||||
|
|
||||||
# VET
|
# VET
|
||||||
|
@ -76,7 +76,7 @@ test:
|
||||||
pwd: $BASE_STABLE
|
pwd: $BASE_STABLE
|
||||||
|
|
||||||
# LINT
|
# 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
|
pwd: $BASE_STABLE
|
||||||
|
|
||||||
override:
|
override:
|
||||||
|
|
Loading…
Reference in a new issue