Skip to content

Commit 3691efb

Browse files
committed
fix(tests): increase component test timeouts to 20min
Most component test failures in our CI system recently have been due to the tests taking longer than the default Go testing package timeout of 10 minutes. The tests are in progress, but Go kills the process after 10 minutes and reports it as failed. The tradeoff here is that if one of the tests is actually stuck, we wait twice as long to find that out, but overall this seems like a fix for CI stability. Builder was increased to 30m since it takes much longer to pull slugbuilder.
1 parent 40bb933 commit 3691efb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ test-unit:
5252
venv/bin/python manage.py test --noinput api
5353

5454
test-functional:
55-
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v ./tests/...
55+
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v -timeout 20m ./tests/...

0 commit comments

Comments
 (0)