Skip to content

Commit

Permalink
xfail chunked_string for new streaming
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli committed Feb 21, 2025
1 parent 4b74f60 commit 89fa0cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion py-polars/tests/unit/interchange/test_from_dataframe.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from __future__ import annotations

import os
from datetime import date, datetime, time, timedelta
from typing import Any

Expand Down Expand Up @@ -157,7 +158,9 @@ def test_from_dataframe_chunked() -> None:
assert result.n_chunks() == 2


def test_from_dataframe_chunked_string() -> None:
def test_from_dataframe_chunked_string(request: pytest.FixtureRequest) -> None:
if os.environ.get("POLARS_AUTO_NEW_STREAMING") == "1":
request.applymarker(pytest.mark.xfail)
df = pl.Series("a", ["a", None, "bc", "d", None, "efg"]).to_frame()
df_chunked = pl.concat([df[:1], df[1:3], df[3:]], rechunk=False)

Expand Down

0 comments on commit 89fa0cd

Please sign in to comment.