Integration tests: 5min instead of 3min timeout

Recently, mostly on CircleCI, the CI test suite runs into
timeouts, often leading to subsequent "Dirty Reactor" errors.

Increasing the timeout makes this happen less often.

Refs ticket: 4085, 4022, 2994
This commit is contained in:
Florian Sesser 2024-11-15 14:42:45 +00:00
parent 6cf67471f1
commit 549cb8e0ba

View File

@ -115,7 +115,7 @@ class CountingDataUploadable(upload.Data):
class SystemTest(SystemTestMixin, RunBinTahoeMixin, unittest.TestCase): class SystemTest(SystemTestMixin, RunBinTahoeMixin, unittest.TestCase):
"""Foolscap integration-y tests.""" """Foolscap integration-y tests."""
FORCE_FOOLSCAP_FOR_STORAGE = True FORCE_FOOLSCAP_FOR_STORAGE = True
timeout = 180 timeout = 300
@property @property
def basedir(self): def basedir(self):