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.
This commit is contained in:
Wilmer Paulino 2021-04-28 16:25:22 -07:00
parent f26cfac440
commit c59c8d9c19
No known key found for this signature in database
GPG Key ID: 6DF57B9F9514972F

View File

@ -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/'