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 561428c commit d648c3bCopy full SHA for d648c3b
fsspec/implementations/tests/test_local.py
@@ -104,6 +104,7 @@ def test_urlpath_inference_errors():
104
get_fs_token_paths([])
105
assert "empty" in str(err.value)
106
107
+ pytest.importorskip("s3fs")
108
# Protocols differ
109
with pytest.raises(ValueError) as err:
110
get_fs_token_paths(["s3://test/path.csv", "/other/path.csv"])
fsspec/tests/test_core.py
@@ -194,6 +194,7 @@ def test_pickle_after_open_open():
194
195
196
def test_mismatch():
197
198
with pytest.raises(ValueError):
199
open_files(["s3://test/path.csv", "/other/path.csv"])
200
0 commit comments