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
This commit is contained in:
Paul Hinze 2015-01-24 07:57:15 -08:00
parent a3ef8bed68
commit bba3890f32
1 changed files with 1 additions and 1 deletions

View File

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