From c59c8d9c199fb7c8418330b84f6b52360cb950c8 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Wed, 28 Apr 2021 16:25:22 -0700 Subject: [PATCH] build: increase global test timeout to 60m This doesn't affect our travis builds as much as our integration suite is ran in parellel, but it is needed when running it sequentially. --- make/testing_flags.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/testing_flags.mk b/make/testing_flags.mk index 7637d601..569e86f4 100644 --- a/make/testing_flags.mk +++ b/make/testing_flags.mk @@ -68,11 +68,11 @@ LOG_TAGS := nolog endif # If a timeout was requested, construct initialize the proper flag for the go -# test command. If not, we set 20m (up from the default 10m). +# test command. If not, we set 60m (up from the default 10m). ifneq ($(timeout),) TEST_FLAGS += -test.timeout=$(timeout) else -TEST_FLAGS += -test.timeout=40m +TEST_FLAGS += -test.timeout=60m endif GOLIST := go list -tags="$(DEV_TAGS)" -deps $(PKG)/... | grep '$(PKG)'| grep -v '/vendor/'