File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -251,6 +251,11 @@ async def test_make_store_path_with_zep8_url() -> None:
251
251
async def test_make_store_path_with_regular_url () -> None :
252
252
"""Test make_store_path with regular URLs (backward compatibility)."""
253
253
pytest .importorskip ("fsspec" , reason = "fsspec not available" )
254
+ pytest .importorskip (
255
+ "fsspec" ,
256
+ minversion = "2024.12.0" ,
257
+ reason = "fsspec >= 2024.12.0 required for AsyncFileSystemWrapper" ,
258
+ )
254
259
255
260
# Test that regular fsspec paths still work
256
261
# Note: We test with memory:// which doesn't require network
@@ -483,6 +488,11 @@ async def test_fsspec_https_url_resolution() -> None:
483
488
async def test_fsspec_store_creation_mock () -> None :
484
489
"""Test fsspec store creation with mocked filesystem."""
485
490
fsspec = pytest .importorskip ("fsspec" , reason = "fsspec not available" )
491
+ pytest .importorskip (
492
+ "fsspec" ,
493
+ minversion = "2024.12.0" ,
494
+ reason = "fsspec >= 2024.12.0 required for AsyncFileSystemWrapper" ,
495
+ )
486
496
487
497
# Create a mock filesystem for testing
488
498
from zarr .storage ._fsspec import _make_async
You can’t perform that action at this time.
0 commit comments