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 d38c186 commit e3273e8Copy full SHA for e3273e8
tests/test_store/test_fsspec.py
@@ -238,14 +238,6 @@ def test_from_upath(self) -> None:
238
assert result.fs.asynchronous
239
assert result.path == f"{test_bucket_name}/foo/bar"
240
241
- def test_init_raises_if_path_has_scheme(self, store_kwargs: dict[str, Any]) -> None:
242
- # regression test for https://github.com/zarr-developers/zarr-python/issues/2342
243
- store_kwargs["path"] = "s3://" + store_kwargs["path"]
244
- with pytest.raises(
245
- ValueError, match="path argument to FsspecStore must not include scheme .*"
246
- ):
247
- self.store_cls(**store_kwargs)
248
-
249
def test_init_warns_if_fs_asynchronous_is_false(self) -> None:
250
try:
251
from fsspec import url_to_fs
0 commit comments