20 lines
624 B
Diff
20 lines
624 B
Diff
Subject: [PATCH] tests: allow more time for remote worker events
|
|
|
|
Worker startup can exceed ten seconds on heavily loaded builders. Allow
|
|
the remote-test helper to wait up to sixty seconds for worker events.
|
|
The wait still returns as soon as an event arrives and remains bounded.
|
|
Production worker timeouts and test assertions are unchanged.
|
|
|
|
--- a/testing/test_remote.py
|
|
+++ b/testing/test_remote.py
|
|
@@ -17,7 +17,8 @@
|
|
from xdist.workermanage import WorkerController
|
|
|
|
|
|
-WAIT_TIMEOUT = 10.0
|
|
+# Allow worker events extra time on heavily loaded builders.
|
|
+WAIT_TIMEOUT = 60.0
|
|
|
|
|
|
def check_marshallable(d: object) -> None:
|