Skip to content

Commit

Permalink
test(python): Skip intermittently failing AWS test
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Jun 12, 2024
1 parent d6bf444 commit ed92e4e
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion py-polars/tests/unit/io/cloud/test_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,17 @@ def s3(s3_base: str, io_files_path: Path) -> str:

@pytest.mark.parametrize(
("function", "extension"),
[(pl.read_csv, "csv"), (pl.read_ipc, "ipc")],
[
pytest.param(
pl.read_csv,
"csv",
marks=pytest.mark.skip(
reason="Causes intermittent failures in CI. See: "
"https://github.com/pola-rs/polars/issues/16910"
),
),
(pl.read_ipc, "ipc"),
],
)
def test_read_s3(s3: str, function: Callable[..., Any], extension: str) -> None:
storage_options = {"endpoint_url": s3}
Expand Down

0 comments on commit ed92e4e

Please sign in to comment.