Skip to content

Commit 2c2d202

Browse files
author
Martin Durant
committed
remove defunct test
1 parent 609b865 commit 2c2d202

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

fsspec/tests/test_registry.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -38,22 +38,6 @@ def clean_imports():
3838
sys.modules["fsspec"] = real_module
3939

4040

41-
@pytest.mark.parametrize(
42-
"protocol,module,minversion,oldversion",
43-
[("s3", "s3fs", "0.3.0", "0.1.0"), ("gs", "gcsfs", "0.3.0", "0.1.0")],
44-
)
45-
def test_minversion_s3fs(protocol, module, minversion, oldversion, monkeypatch):
46-
_registry.clear()
47-
mod = pytest.importorskip(module, minversion)
48-
49-
assert get_filesystem_class("s3") is not None
50-
_registry.clear()
51-
52-
monkeypatch.setattr(mod, "__version__", oldversion)
53-
with pytest.raises(RuntimeError, match=minversion):
54-
get_filesystem_class(protocol)
55-
56-
5741
def test_registry_readonly():
5842
get_filesystem_class("file")
5943
assert "file" in registry

0 commit comments

Comments
 (0)