From 3fc3c5d61a8e265d242661c4015bea7cb806e06b Mon Sep 17 00:00:00 2001 From: Chris Stephens Date: Fri, 18 Jan 2019 14:53:16 -0800 Subject: [PATCH] Increase acceptance test timeout to 4 hours (#2899) --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 0defa49b..3b402f8c 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -13,7 +13,7 @@ test: fmtcheck xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4 testacc: fmtcheck - TF_ACC=1 TF_SCHEMA_PANIC_ON_ERROR=1 go test $(TEST) -v $(TESTARGS) -timeout 120m -ldflags="-X=github.com/terraform-providers/terraform-provider-google/version.ProviderVersion=acc" + TF_ACC=1 TF_SCHEMA_PANIC_ON_ERROR=1 go test $(TEST) -v $(TESTARGS) -timeout 240m -ldflags="-X=github.com/terraform-providers/terraform-provider-google/version.ProviderVersion=acc" fmt: @echo "==> Fixing source code with gofmt..."