Skip to content

Commit dcde1de

Browse files
committed
Correct testbed and cross-env arguments.
1 parent 3290b85 commit dcde1de

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

patch/Python/Python.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -914,15 +914,15 @@
914914
+ "test",
915915
+ # f"--{context.ci_mode}-ci",
916916
+ "-uall",
917-
+ "--rerun",
918-
+ "--single-process",
917+
+ # "--rerun",
918+
+ # "--single-process",
919919
+ "-W",
920920
+ # Timeout handling requires subprocesses; explicitly setting
921921
+ # the timeout to -1 disables the faulthandler.
922922
+ "--timeout=-1",
923923
+ # Adding Python options requires the use of a subprocess to
924924
+ # start a new Python interpreter.
925-
+ "--dont-add-python-opts",
925+
+ # "--dont-add-python-opts",
926926
+ ]
927927
+ )
928928
+

patch/Python/_cross_target.py.tmpl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,5 @@ sysconfig._BASE_PREFIX = sys.base_prefix
8181
sysconfig._BASE_EXEC_PREFIX = sys.base_exec_prefix
8282

8383
# Force sysconfig data to be loaded (and cached).
84-
sysconfig._init_config_vars()
84+
sysconfig._CONFIG_VARS = None
85+
sysconfig.get_config_vars()

0 commit comments

Comments
 (0)