Ignore Godeps for gofmt and golint

Signed-off-by: Stephen J Day <stephen.day@docker.com>
pull/59/head
Stephen J Day 2015-01-12 13:59:50 -08:00
parent fc2a840e8f
commit 01bc08351d
1 changed files with 2 additions and 2 deletions

View File

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