@@ -81,9 +81,7 @@ def test(tmp_path):
81
81
# the 'false ||' bit is to ensure this command runs in a shell on
82
82
# mac/linux.
83
83
"CIBW_TEST_COMMAND" : f"false || { utils .invoke_pytest ()} {{project}}/test" ,
84
- # pytest fails on GraalPy 24.2.0 on Windows so we skip it there
85
- # until https://github.com/oracle/graalpython/issues/490 is fixed
86
- "CIBW_TEST_COMMAND_WINDOWS" : "COLOR 00 || where graalpy || pytest {project}/test" ,
84
+ "CIBW_TEST_COMMAND_WINDOWS" : "COLOR 00 || pytest {project}/test" ,
87
85
},
88
86
)
89
87
@@ -104,9 +102,7 @@ def test_extras_require(tmp_path):
104
102
# the 'false ||' bit is to ensure this command runs in a shell on
105
103
# mac/linux.
106
104
"CIBW_TEST_COMMAND" : f"false || { utils .invoke_pytest ()} {{project}}/test" ,
107
- # pytest fails on GraalPy 24.2.0 on Windows so we skip it there
108
- # until https://github.com/oracle/graalpython/issues/490 is fixed
109
- "CIBW_TEST_COMMAND_WINDOWS" : "COLOR 00 || where graalpy || pytest {project}/test" ,
105
+ "CIBW_TEST_COMMAND_WINDOWS" : "COLOR 00 || pytest {project}/test" ,
110
106
},
111
107
single_python = True ,
112
108
)
@@ -138,9 +134,7 @@ def test_dependency_groups(tmp_path):
138
134
# the 'false ||' bit is to ensure this command runs in a shell on
139
135
# mac/linux.
140
136
"CIBW_TEST_COMMAND" : f"false || { utils .invoke_pytest ()} {{project}}/test" ,
141
- # pytest fails on GraalPy 24.2.0 on Windows so we skip it there
142
- # until https://github.com/oracle/graalpython/issues/490 is fixed
143
- "CIBW_TEST_COMMAND_WINDOWS" : "COLOR 00 || where graalpy || pytest {project}/test" ,
137
+ "CIBW_TEST_COMMAND_WINDOWS" : "COLOR 00 || pytest {project}/test" ,
144
138
},
145
139
single_python = True ,
146
140
)
@@ -230,9 +224,7 @@ def test_test_sources(tmp_path):
230
224
project_dir ,
231
225
add_env = {
232
226
"CIBW_TEST_REQUIRES" : "pytest" ,
233
- # pytest fails on GraalPy 24.2.0 on Windows so we skip it there
234
- # until https://github.com/oracle/graalpython/issues/490 is fixed
235
- "CIBW_TEST_COMMAND_WINDOWS" : "where graalpy || pytest" ,
227
+ "CIBW_TEST_COMMAND_WINDOWS" : "pytest" ,
236
228
"CIBW_TEST_COMMAND" : utils .invoke_pytest (),
237
229
"CIBW_TEST_SOURCES" : "test" ,
238
230
},
0 commit comments