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 96880d6 commit eb32a82Copy full SHA for eb32a82
mx.graalpython/mx_graalpython.py
@@ -237,7 +237,7 @@ def run_cpython_test(args):
237
globs.append(arg)
238
testfiles = []
239
for g in globs:
240
- testfiles += glob.glob(os.path.join(SUITE.dir, "graalpython/lib-python/3/test", f"{g}*"))
+ testfiles += glob.glob(os.path.join(SUITE.dir, "graalpython/lib-python/3/test", "%s*" % g))
241
mx.run([python_gvm()] + interp_args + [
242
os.path.join(SUITE.dir, "graalpython/com.oracle.graal.python.test/src/tests/run_cpython_test.py"),
243
] + test_args + testfiles)
0 commit comments