Skip to content

Commit 6ee944f

Browse files
committed
windows: exclude a stalling test
Unsure what's going on here. But this enables the test suite invocation to run to completion.
1 parent 19a73ef commit 6ee944f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

cpython-windows/build.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1563,6 +1563,10 @@ def build_cpython(arch: str, pgo=False, build_mode="static"):
15631563
"--pgo",
15641564
"-j",
15651565
"%d" % (multiprocessing.cpu_count() / 2 - 1),
1566+
# test_regrtest hangs for some reason. It is the test for the
1567+
# test harness itself and isn't exercising useful code. Skip it.
1568+
"--exclude",
1569+
"test_regrtest",
15661570
],
15671571
str(pcbuild_path),
15681572
env,

0 commit comments

Comments
 (0)