https://github.com/python/cpython/commit/56072f9c050b8dd960bb5630eb924eb02a889f9b commit: 56072f9c050b8dd960bb5630eb924eb02a889f9b branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2025-10-08T23:00:20Z summary:
[3.14] gh-139805: Bump `test_repl_eio` timeout for slow builtbots (GH-139807) (#139812) 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 6e422806cec47e..9ac2e9961df2dc 100644 --- a/Lib/test/test_pyrepl/test_unix_console.py +++ b/Lib/test/test_pyrepl/test_unix_console.py @@ -361,7 +361,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]
