From bba3890f327ab022f090d0340558c1c5f760441a Mon Sep 17 00:00:00 2001 From: Paul Hinze Date: Sat, 24 Jan 2015 07:57:15 -0800 Subject: [PATCH] Makefile: bump test timeout from 10s to 30s on a slow internet connection, the BitBucket tests were taking over 10s and panicing the test run --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 96977d709..0c1f6ea13 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ dev: generate @TF_DEV=1 sh -c "'$(CURDIR)/scripts/build.sh'" test: generate - TF_ACC= go test $(TEST) $(TESTARGS) -timeout=10s -parallel=4 + TF_ACC= go test $(TEST) $(TESTARGS) -timeout=30s -parallel=4 @$(MAKE) vet testacc: generate