File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 37
37
import sys
38
38
39
39
HPY_IMPORT_ORPHAN_BRANCH_NAME = "hpy-import"
40
+ UNITTEST_WITH_CPY = False
40
41
41
42
PY3 = sys .version_info [0 ] == 3 # compatibility between Python versions
42
43
import tempfile
@@ -608,7 +609,7 @@ def graalpython_gate_runner(args, tasks):
608
609
# Unittests on JVM
609
610
with Task ('GraalPython Python unittests' , tasks , tags = [GraalPythonTags .unittest ]) as task :
610
611
if task :
611
- if platform .system () != 'Darwin' and not mx_gate .get_jacoco_agent_args ():
612
+ if UNITTEST_WITH_CPY and platform .system () != 'Darwin' and not mx_gate .get_jacoco_agent_args ():
612
613
# TODO: drop condition when python3 is available on darwin
613
614
mx .log ("Running tests with CPython" )
614
615
test_args = [_graalpytest_driver (), "-v" , _graalpytest_root ()]
You can’t perform that action at this time.
0 commit comments