Skip to content

Commit

Permalink
Revert "test(python): Re-enable streaming OOC tests (#14522)"
Browse files Browse the repository at this point in the history
This reverts commit c7e6bb4.
  • Loading branch information
stinodego committed Feb 21, 2024
1 parent 5e53191 commit 967145d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions py-polars/tests/unit/streaming/test_streaming_group_by.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@ def test_streaming_group_by_ooc_q2(
assert_frame_equal(result, expected)


@pytest.mark.skip(
reason="Fails randomly in the CI suite: https://github.com/pola-rs/polars/issues/13526"
)
@pytest.mark.write_disk()
def test_streaming_group_by_ooc_q3(
random_integers: pl.Series,
Expand Down
9 changes: 9 additions & 0 deletions py-polars/tests/unit/streaming/test_streaming_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ def test_ooc_sort(tmp_path: Path, monkeypatch: Any) -> None:
assert_series_equal(out, s.sort(descending=descending))


@pytest.mark.skip(
reason="Fails randomly in the CI suite: https://github.com/pola-rs/polars/issues/13526"
)
@pytest.mark.write_disk()
def test_streaming_sort(tmp_path: Path, monkeypatch: Any, capfd: Any) -> None:
tmp_path.mkdir(exist_ok=True)
Expand All @@ -111,6 +114,9 @@ def test_streaming_sort(tmp_path: Path, monkeypatch: Any, capfd: Any) -> None:
assert "df -> sort" in err


@pytest.mark.skip(
reason="Fails randomly in the CI suite: https://github.com/pola-rs/polars/issues/13526"
)
@pytest.mark.write_disk()
def test_out_of_core_sort_9503(tmp_path: Path, monkeypatch: Any) -> None:
tmp_path.mkdir(exist_ok=True)
Expand Down Expand Up @@ -168,6 +174,9 @@ def test_out_of_core_sort_9503(tmp_path: Path, monkeypatch: Any) -> None:
}


@pytest.mark.skip(
reason="Fails randomly in the CI suite: https://github.com/pola-rs/polars/issues/13526"
)
@pytest.mark.write_disk()
@pytest.mark.slow()
def test_streaming_sort_multiple_columns(
Expand Down

0 comments on commit 967145d

Please sign in to comment.