From: Victor Stinner Date: Fri, 22 Sep 2023 01:13:31 +0000 (+0200) Subject: gh-109702: Increase concurrent_futures deadlock timeout (#109703) X-Git-Tag: v3.13.0a1~357 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1eb1b45183c3b8aeefe3d5d27694155741e82bbc;p=thirdparty%2FPython%2Fcpython.git gh-109702: Increase concurrent_futures deadlock timeout (#109703) Replace SHORT_TIMEOUT with LONG_TIMEOUT in test_deadlock of test_concurrent_futures. --- diff --git a/Lib/test/test_concurrent_futures/test_deadlock.py b/Lib/test/test_concurrent_futures/test_deadlock.py index baac2b51e0d4..1675a55b89eb 100644 --- a/Lib/test/test_concurrent_futures/test_deadlock.py +++ b/Lib/test/test_concurrent_futures/test_deadlock.py @@ -88,7 +88,7 @@ class ErrorAtUnpickle(object): class ExecutorDeadlockTest: - TIMEOUT = support.SHORT_TIMEOUT + TIMEOUT = support.LONG_TIMEOUT def _fail_on_deadlock(self, executor): # If we did not recover before TIMEOUT seconds, consider that the