From cea65be2f2ee0957d36e9cde608208911ed069d9 Mon Sep 17 00:00:00 2001 From: Ritchie Vink Date: Thu, 26 Dec 2024 11:01:52 +0100 Subject: [PATCH] test: Skip test on windows; kuzu import segfaults (#20463) --- py-polars/tests/unit/io/database/test_read.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/py-polars/tests/unit/io/database/test_read.py b/py-polars/tests/unit/io/database/test_read.py index 6a6a84fc9c80..cb1a10a21c2a 100644 --- a/py-polars/tests/unit/io/database/test_read.py +++ b/py-polars/tests/unit/io/database/test_read.py @@ -750,6 +750,10 @@ def test_read_database_cx_credentials(uri: str) -> None: pl.read_database_uri("SELECT * FROM data", uri=uri, engine="connectorx") +@pytest.mark.skipif( + sys.platform == "win32", + reason="kuzu segfaults on windows: https://github.com/pola-rs/polars/actions/runs/12502055945/job/34880479875?pr=20462", +) @pytest.mark.write_disk def test_read_kuzu_graph_database(tmp_path: Path, io_files_path: Path) -> None: import kuzu