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