Skip to content

Commit e9069a7

Browse files
[GR-25136] Next dev cycle.
PullRequest: graalpython/1212
2 parents e125c3b + f68022a commit e9069a7

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "9fa08ef5e0524cd66f63ef19cd04176a57885788" }
1+
{ "overlay": "1294ec4a79db93731a8952c5c8e7df99aab47a60" }

mx.graalpython/mx_graalpython.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -586,8 +586,13 @@ def graalpython_gate_runner(args, tasks):
586586
if platform.system() != 'Darwin' and not mx_gate.get_jacoco_agent_args():
587587
# TODO: drop condition when python3 is available on darwin
588588
mx.log("Running tests with CPython")
589-
test_args = [_graalpytest_driver(), "-v", _graalpytest_root()]
590-
mx.run(["python3"] + test_args, nonZeroIsFatal=True)
589+
exe = os.environ.get("PYTHON3_HOME", None)
590+
if exe:
591+
exe = os.path.join(exe, "python")
592+
else:
593+
exe = "python3"
594+
test_args = [exe, _graalpytest_driver(), "-v", _graalpytest_root()]
595+
mx.run(test_args, nonZeroIsFatal=True)
591596
mx.run(["env"])
592597
run_python_unittests(python_gvm())
593598

mx.graalpython/suite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"name": "graalpython",
1010
"versionConflictResolution": "latest",
1111

12-
"version": "20.2.0",
13-
"release": True,
12+
"version": "20.2.1",
13+
"release": False,
1414
"groupId": "org.graalvm.graalpython",
1515
"url": "http://www.graalvm.org/",
1616

0 commit comments

Comments
 (0)