Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Lib/test/test_pyrepl/test_unix_console.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import sys
import unittest
from functools import partial
from test import support
from test.support import os_helper
from test.support import script_helper

Expand Down Expand Up @@ -384,7 +385,8 @@ def test_repl_eio(self):
self.fail("Child process failed to start properly")

os.kill(proc.pid, signal.SIGUSR1)
_, err = proc.communicate(timeout=5) # sleep for pty to settle
# sleep for pty to settle
_, err = proc.communicate(timeout=support.SHORT_TIMEOUT)
self.assertEqual(
proc.returncode,
1,
Expand Down
Loading