diff options
author | Victor Stinner <vstinner@python.org> | 2024-06-03 16:34:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-03 16:34:36 (GMT) |
commit | 4e8aa32245e2d72bf558b711ccdbcee594347615 (patch) | |
tree | 1b68abdc6ad2a62445b54525290fbf3002c5b9e2 /Lib/test/libregrtest/worker.py | |
parent | 1d4c2e4a877a48cdc8bcc9808d799b91c82b3757 (diff) | |
download | cpython-4e8aa32245e2d72bf558b711ccdbcee594347615.zip cpython-4e8aa32245e2d72bf558b711ccdbcee594347615.tar.gz cpython-4e8aa32245e2d72bf558b711ccdbcee594347615.tar.bz2 |
gh-119727: Add --single-process option to regrtest (#119728)
Diffstat (limited to 'Lib/test/libregrtest/worker.py')
-rw-r--r-- | Lib/test/libregrtest/worker.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/libregrtest/worker.py b/Lib/test/libregrtest/worker.py index 15d32b5..86cc308 100644 --- a/Lib/test/libregrtest/worker.py +++ b/Lib/test/libregrtest/worker.py @@ -14,9 +14,9 @@ from .utils import ( USE_PROCESS_GROUP = (hasattr(os, "setsid") and hasattr(os, "killpg")) -NEED_TTY = set(''' - test_ioctl -'''.split()) +NEED_TTY = { + 'test_ioctl', +} def create_worker_process(runtests: WorkerRunTests, output_fd: int, |