Skip to content

Commit 9ec494e

Browse files
committed
Skip polyglot isolate tests on windows
1 parent 30ff594 commit 9ec494e

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
@@ -1219,6 +1219,10 @@ def graalpython_gate_runner(args, tasks):
12191219
# JUnit tests with Maven and polyglot isolates
12201220
with Task('GraalPython integration JUnit with Maven and Polyglot Isolates', tasks, tags=[GraalPythonTags.junit_maven_isolates]) as task:
12211221
if task:
1222+
if mx.is_windows():
1223+
mx.log(mx.colorize('Polyglot isolate tests do not work on Windows', color='magenta'))
1224+
return
1225+
12221226
mvn_repo_path, artifacts_version, env = deploy_local_maven_repo(env={
12231227
"DYNAMIC_IMPORTS": "/truffle-enterprise,/substratevm-enterprise",
12241228
"NATIVE_IMAGES": "",

0 commit comments

Comments
 (0)