We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f75f51d commit 8d24bfbCopy full SHA for 8d24bfb
mx.graalpython/mx_graalpython.py
@@ -1400,7 +1400,8 @@ def graalpython_gate_runner(args, tasks):
1400
run_mx(["build"], env={**os.environ, **LATEST_JAVA_HOME})
1401
args =['--verbose']
1402
vm_args = ['-Dpolyglot.engine.WarnInterpreterOnly=false']
1403
- mx_unittest.unittest(vm_args + ['org.graalvm.python.embedding.vfs.test'] + args + ["--use-graalvm"])
+ has_compiler = bool(mx.suite('compiler', fatalIfMissing=False))
1404
+ mx_unittest.unittest(vm_args + ['org.graalvm.python.embedding.vfs.test'] + args + (["--use-graalvm"] if has_compiler else []))
1405
1406
with Task('GraalPython Python tests', tasks, tags=[GraalPythonTags.tagged]) as task:
1407
if task:
0 commit comments