From 6cd63c8bc055561e4dd5fcc5267c35d059ffb101 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Mon, 29 Aug 2016 13:41:53 -0700 Subject: [PATCH] Disable registry handlers race tests Registry handlers tests currently takes up too many resources for the race test to handle on circle ci. Signed-off-by: Derek McGowan (github: dmcgowan) --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index 8c0ed59ec..52348a4bc 100644 --- a/circle.yml +++ b/circle.yml @@ -78,7 +78,7 @@ test: pwd: $BASE_STABLE # Test stable with race - - gvm use stable; export ROOT_PACKAGE=$(go list .); go list -tags "$DOCKER_BUILDTAGS" ./... | grep -v "/vendor/" | grep -v "registry/storage/driver" | xargs -L 1 -I{} bash -c 'export PACKAGE={}; godep go test -race -tags "$DOCKER_BUILDTAGS" -test.short $PACKAGE': + - gvm use stable; export ROOT_PACKAGE=$(go list .); go list -tags "$DOCKER_BUILDTAGS" ./... | grep -v "/vendor/" | grep -v "registry/handlers" | grep -v "registry/storage/driver" | xargs -L 1 -I{} bash -c 'export PACKAGE={}; godep go test -race -tags "$DOCKER_BUILDTAGS" -test.short $PACKAGE': timeout: 1000 pwd: $BASE_STABLE post: