chore: remove some GraalPy Windows workarounds. (#2501)

GraalPy made a release where pytest works on Windows
This commit is contained in:
Tim Felgentreff
2025-07-31 00:31:23 -04:00
committed by GitHub
parent 9e4e50bd76
commit e2c7102ed7
2 changed files with 5 additions and 15 deletions
+1 -3
View File
@@ -63,9 +63,7 @@ def test(tmp_path, build_frontend_env):
# the 'false ||' bit is to ensure this command runs in a shell on
# mac/linux.
"CIBW_TEST_COMMAND": f"false || {utils.invoke_pytest()} {{project}}/test",
# pytest fails on GraalPy 24.2.0 on Windows so we skip it there
# until https://github.com/oracle/graalpython/issues/490 is fixed
"CIBW_TEST_COMMAND_WINDOWS": "where graalpy || pytest {project}/test",
"CIBW_TEST_COMMAND_WINDOWS": "pytest {project}/test",
**build_frontend_env,
},
)