Bump the test timeout up to 5 minutes.

The newly-added archive tests are taking over 2 minutes to run in CI.
This commit is contained in:
Pat Gavlin 2017-12-12 11:36:26 -08:00
parent 7e7c041d06
commit ad18d8ee9b

View file

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