Skip to content

Commit 4feeabe

Browse files
committed
Correct handling of --fast-ci and --slow-ci options.
1 parent 611d82b commit 4feeabe

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Apple/__main__.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -798,10 +798,15 @@ def test(context: argparse.Namespace, host: str | None = None) -> None:
798798
+ [
799799
"--",
800800
"test",
801-
"-uall",
801+
"--slow-ci" if context.slow else "--fast-ci",
802802
"--single-process",
803-
"--rerun",
804-
"-W",
803+
"--no-randomize",
804+
# Timeout handling requires subprocesses; explicitly setting
805+
# the timeout to -1 disables the faulthandler.
806+
"--timeout=-1",
807+
# Adding Python options requires the use of a subprocess to
808+
# start a new Python interpreter.
809+
"--dont-add-python-opts",
805810
]
806811
)
807812

0 commit comments

Comments
 (0)