From b1eb7a3aafa9a33f684bb0066cb5665f12c0ffe8 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 26 Mar 2026 11:19:43 +0100 Subject: [PATCH] gh-146410: Run tests with with --pythoninfo on iOS Add --pythoninfo option to dump build information. --- Apple/__main__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Apple/__main__.py b/Apple/__main__.py index 3261f368a88fc0..85b016dd08acb7 100644 --- a/Apple/__main__.py +++ b/Apple/__main__.py @@ -831,6 +831,7 @@ def test(context: argparse.Namespace, host: str | None = None) -> None: # noqa: f"--{context.ci_mode}-ci", "--single-process", "--no-randomize", + "--pythoninfo", # Timeout handling requires subprocesses; explicitly setting # the timeout to -1 disables the faulthandler. "--timeout=-1",