https://github.com/python/cpython/commit/8234841e5b26d702e17e8ee7acb3e87038f96283 commit: 8234841e5b26d702e17e8ee7acb3e87038f96283 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2025-10-08T22:57:30Z summary:
[3.13] gh-139805: Bump `test_repl_eio` timeout for slow builtbots (GH-139807) (#139813) gh-139805: Bump `test_repl_eio` timeout for slow builtbots (GH-139807) (cherry picked from commit e7e3d1d4a8dece01b1bbd0253684d5b46b2409d7) Co-authored-by: Stan Ulbrych <[email protected]> files: M Lib/test/test_pyrepl/test_unix_console.py diff --git a/Lib/test/test_pyrepl/test_unix_console.py b/Lib/test/test_pyrepl/test_unix_console.py index 598c116fe6caef..d40400f09f39b2 100644 --- a/Lib/test/test_pyrepl/test_unix_console.py +++ b/Lib/test/test_pyrepl/test_unix_console.py @@ -386,7 +386,7 @@ def test_repl_eio(self): os.kill(proc.pid, signal.SIGUSR1) # sleep for pty to settle - _, err = proc.communicate(timeout=support.SHORT_TIMEOUT) + _, err = proc.communicate(timeout=support.LONG_TIMEOUT) self.assertEqual( proc.returncode, 1, _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
