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 e749ccc commit cd3d9a9Copy full SHA for cd3d9a9
tests/io/test_fsspec.py
@@ -293,13 +293,13 @@ def test_fsspec_unified_session_properties() -> None:
293
@pytest.mark.adls
294
def test_fsspec_new_input_file_adls(adls_fsspec_fileio: FsspecFileIO) -> None:
295
"""Test creating a new input file from an fsspec file-io"""
296
- assert False, "This should fail CI"
297
filename = str(uuid.uuid4())
298
299
input_file = adls_fsspec_fileio.new_input(f"abfss://tests/{filename}")
300
301
assert isinstance(input_file, fsspec.FsspecInputFile)
302
assert input_file.location == f"abfss://tests/{filename}"
+ raise AssertionError
303
304
305
0 commit comments