From 01bc08351db58747049844c6f1cb5e3c3c2f7b1e Mon Sep 17 00:00:00 2001 From: Stephen J Day Date: Mon, 12 Jan 2015 13:59:50 -0800 Subject: [PATCH] Ignore Godeps for gofmt and golint Signed-off-by: Stephen J Day --- circle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circle.yml b/circle.yml index 1becb4fa5..fd2245587 100644 --- a/circle.yml +++ b/circle.yml @@ -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: