Skip to content

Commit

Permalink
test(python): Re-enable streaming OOC tests (#14522)
Browse files Browse the repository at this point in the history
  • Loading branch information
stinodego committed Feb 15, 2024
1 parent c77a923 commit c7e6bb4
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
3 changes: 0 additions & 3 deletions py-polars/tests/unit/streaming/test_streaming_group_by.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,6 @@ 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: 0 additions & 9 deletions py-polars/tests/unit/streaming/test_streaming_sort.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ 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 @@ -114,9 +111,6 @@ 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 @@ -174,9 +168,6 @@ 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 c7e6bb4

Please sign in to comment.