Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Nov 7, 2024
1 parent 816de79 commit 6161097
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion py-polars/tests/unit/io/cloud/test_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ def test_scan_nonexistent_cloud_path_17444(format: str) -> None:
path_str = f"s3://my-nonexistent-bucket/data.{format}"
scan_function = getattr(pl, f"scan_{format}")
# Prevent automatic credential provideder instantiation, otherwise CI may fail with
# * pytest.PytestUnraisableExceptionWarning: Exception ignored: ResourceWarning: unclosed socket
# * pytest.PytestUnraisableExceptionWarning:
# * Exception ignored:
# * ResourceWarning: unclosed socket
scan_function = partial(scan_function, credential_provider=None)

# Just calling the scan function should not raise any errors
Expand Down

0 comments on commit 6161097

Please sign in to comment.