Merge pull request #860 from hashicorp/test-timeout

Makefile: bump test timeout from 10s to 30s
This commit is contained in:
Mitchell Hashimoto 2015-01-24 08:29:36 -08:00
commit 5dce9a9041
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