From ad18d8ee9b5b2cb56b0e9418c28dda9852b959b6 Mon Sep 17 00:00:00 2001 From: Pat Gavlin Date: Tue, 12 Dec 2017 11:36:26 -0800 Subject: [PATCH] Bump the test timeout up to 5 minutes. The newly-added archive tests are taking over 2 minutes to run in CI. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9cf1a8427..5d3cd01a4 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ lint:: $(GOMETALINTER) ./cmd/... | grep -vE ${LINT_SUPPRESS} | sort ; exit $$(($${PIPESTATUS[1]}-1)) test_fast:: - go test -timeout 2m -cover -parallel ${TESTPARALLELISM} ${PROJECT_PKGS} + go test -timeout 5m -cover -parallel ${TESTPARALLELISM} ${PROJECT_PKGS} test_all:: PATH=$(PULUMI_ROOT)/bin:$(PATH) go test -cover -parallel ${TESTPARALLELISM} ${EXTRA_TEST_PKGS}