Skip to content

Commit 61b8043

Browse files
committed
Ensure that if --ci-mode isn't specified, a valid flag is passed.
1 parent 2977c64 commit 61b8043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Apple/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -832,7 +832,7 @@ def test(context: argparse.Namespace, host: str | None = None) -> None: # noqa:
832832
+ [
833833
"--",
834834
"test",
835-
f"--{context.ci_mode}-ci",
835+
f"--{context.ci_mode or 'fast'}-ci",
836836
"--single-process",
837837
"--no-randomize",
838838
# Timeout handling requires subprocesses; explicitly setting

0 commit comments

Comments
 (0)