From dde43a9cd17fb43c4fbff89bfb8eb3ece9ba49e4 Mon Sep 17 00:00:00 2001 From: Orson Peters Date: Wed, 23 Oct 2024 17:57:59 +0200 Subject: [PATCH] skip timing based test that is not yet supported --- py-polars/tests/unit/streaming/test_streaming.py | 1 + 1 file changed, 1 insertion(+) diff --git a/py-polars/tests/unit/streaming/test_streaming.py b/py-polars/tests/unit/streaming/test_streaming.py index 9b4a2e66820e..225c0b97553c 100644 --- a/py-polars/tests/unit/streaming/test_streaming.py +++ b/py-polars/tests/unit/streaming/test_streaming.py @@ -75,6 +75,7 @@ def test_streaming_streamable_functions(monkeypatch: Any, capfd: Any) -> None: @pytest.mark.slow +@pytest.mark.may_fail_auto_streaming def test_cross_join_stack() -> None: a = pl.Series(np.arange(100_000)).to_frame().lazy() t0 = time.time()