File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -454,7 +454,6 @@ markers = [
454454 " asyncio: mark test as asyncio test" ,
455455 " gpu: mark a test as requiring CuPy and GPU" ,
456456 " slow_hypothesis: slow hypothesis tests" ,
457- " slow_wasm: slow tests in Pyodide/WASM" ,
458457]
459458
460459[tool .repo-review ]
Original file line number Diff line number Diff line change @@ -283,30 +283,17 @@ def pytest_addoption(parser: Any) -> None:
283283 default = False ,
284284 help = "run slow hypothesis tests" ,
285285 )
286- parser .addoption (
287- "--run-slow-wasm" ,
288- action = "store_true" ,
289- default = False ,
290- help = "run slow tests only applicable to WASM" ,
291- )
292286
293287
294288def pytest_collection_modifyitems (config : Any , items : Any ) -> None :
295289 if config .getoption ("--run-slow-hypothesis" ):
296290 return
297- if config .getoption ("--run-slow-wasm" ) and IS_WASM :
298- return
299291
300292 skip_slow_hyp = pytest .mark .skip (reason = "need --run-slow-hypothesis option to run" )
301- skip_slow_wasm = pytest .mark .skip (
302- reason = "need --run-slow-wasm option to run in WASM, or not running in WASM"
303- )
304293
305294 for item in items :
306295 if "slow_hypothesis" in item .keywords :
307296 item .add_marker (skip_slow_hyp )
308- if "slow_wasm" in item .keywords and IS_WASM :
309- item .add_marker (skip_slow_wasm )
310297
311298
312299settings .register_profile (
Original file line number Diff line number Diff line change @@ -247,7 +247,6 @@ async def test_vindex(data: st.DataObject) -> None:
247247 # note: async vindex setitem not yet implemented
248248
249249
250- @pytest .mark .slow_wasm
251250@given (store = stores , meta = array_metadata ()) # type: ignore[misc]
252251@pytest .mark .filterwarnings ("ignore::zarr.core.dtype.common.UnstableSpecificationWarning" )
253252async def test_roundtrip_array_metadata_from_store (
You can’t perform that action at this time.
0 commit comments