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 13238ff commit 46e4148Copy full SHA for 46e4148
tests/test_store/test_fsspec.py
@@ -428,6 +428,10 @@ async def test_delete_dir_wrapped_filesystem(tmp_path: Path) -> None:
428
assert not await store.exists("foo/c/0")
429
430
431
+@pytest.mark.skipif(
432
+ parse_version(fsspec.__version__) < parse_version("2024.12.0"),
433
+ reason="No AsyncFileSystemWrapper",
434
+)
435
async def test_with_read_only_auto_mkdir(tmp_path: Path) -> None:
436
"""
437
Test that creating a read-only copy of a store backed by the local file system does not error
0 commit comments