Skip to content

Commit ec94a4b

Browse files
committed
fix tests
1 parent a9379f8 commit ec94a4b

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

tests/test_load.py

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -691,15 +691,6 @@ def test_load_dataset_builder_fail():
691691
datasets.load_dataset_builder("blabla")
692692

693693

694-
def test_load_dataset_builder_with_filesystem(dataset_loading_script_dir, data_dir, mockfs):
695-
builder = datasets.load_dataset_builder(
696-
dataset_loading_script_dir, data_dir=data_dir, cache_dir="mock://", storage_options=mockfs.storage_options
697-
)
698-
assert builder.cache_dir.startswith("mock://")
699-
assert isinstance(builder._fs, type(mockfs))
700-
assert builder._fs.storage_options == mockfs.storage_options
701-
702-
703694
@pytest.mark.parametrize("keep_in_memory", [False, True])
704695
def test_load_dataset_local(dataset_loading_script_dir, data_dir, keep_in_memory, caplog):
705696
with assert_arrow_memory_increases() if keep_in_memory else assert_arrow_memory_doesnt_increase():

0 commit comments

Comments
 (0)