Getting failures in tests/test_store/test_fsspec.py::test_wrap_sync_filesystem, not sure what the underlying issue. The relevant test is here:
|
def test_wrap_sync_filesystem(): |
|
"""The local fs is not async so we should expect it to be wrapped automatically""" |
|
from fsspec.implementations.asyn_wrapper import AsyncFileSystemWrapper |
|
|
|
store = FsspecStore.from_url("local://test/path") |
|
|
|
assert isinstance(store.fs, AsyncFileSystemWrapper) |
|
assert store.fs.async_impl |
Does anyone know why this might fail for python 3.13? this is probably due to unreleased changes in fsspec
@martindurant any ideas for how we should change this test?
Getting failures in tests/test_store/test_fsspec.py::test_wrap_sync_filesystem, not sure what the underlying issue. The relevant test is here:
zarr-python/tests/test_store/test_fsspec.py
Lines 247 to 254 in 96c9677
Does anyone know why this might fail for python 3.13?this is probably due to unreleased changes in fsspec@martindurant any ideas for how we should change this test?