Skip to content

Commit f654c06

Browse files
committed
Lower test parallelism on windows
1 parent 8d86c07 commit f654c06

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -930,6 +930,10 @@ def run_python_unittests(python_binary, args=None, paths=None, exclude=None, env
930930
if parallel is None:
931931
parallel = 4 if paths is None else 1
932932

933+
if sys.platform == 'win32':
934+
# Windows machines don't seem to have much memory
935+
parallel = min(parallel, 2)
936+
933937
args = args or []
934938
args = [
935939
"--vm.ea",

0 commit comments

Comments
 (0)