Skip to content

Commit 6efcff1

Browse files
committed
pythongh-109566: regrtest --fast-ci no longer enables --nowindow
The --nowindow option is deprecated and does nothing but logs a warning.
1 parent 3439cb0 commit 6efcff1

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Lib/test/libregrtest/cmdline.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
import sys
55
from test.support import os_helper
66

7-
from .utils import MS_WINDOWS
8-
97

108
USAGE = """\
119
python -m test [options] [test_name1 [test_name2 ...]]
@@ -414,7 +412,7 @@ def _parse_args(args, **kwargs):
414412
# Similar to options:
415413
#
416414
# -j0 --randomize --fail-env-changed --fail-rerun --rerun
417-
# --slowest --verbose3 --nowindows
415+
# --slowest --verbose3
418416
if ns.use_mp is None:
419417
ns.use_mp = 0
420418
ns.randomize = True
@@ -424,8 +422,6 @@ def _parse_args(args, **kwargs):
424422
ns.rerun = True
425423
ns.print_slow = True
426424
ns.verbose3 = True
427-
if MS_WINDOWS:
428-
ns.nowindows = True # Silence alerts under Windows
429425
else:
430426
ns._add_python_opts = False
431427

0 commit comments

Comments
 (0)