We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb7fd95 commit 883fc76Copy full SHA for 883fc76
1 file changed
tests/fast/test_filesystem.py
@@ -56,12 +56,10 @@ def add_file(fs, filename=FILENAME):
56
57
58
class TestPythonFilesystem:
59
- @pytest.mark.xfail(reason="Unregister support was removed. Should be added back before release.")
60
def test_unregister_non_existent_filesystem(self, duckdb_cursor: DuckDBPyConnection):
61
with pytest.raises(InvalidInputException):
62
duckdb_cursor.unregister_filesystem("fake")
63
64
65
def test_memory_filesystem(self, duckdb_cursor: DuckDBPyConnection, memory: fsspec.AbstractFileSystem):
66
duckdb_cursor.register_filesystem(memory)
67
0 commit comments