Skip to content

Commit

Permalink
test: Skip test on windows; kuzu import segfaults (#20463)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Dec 26, 2024
1 parent a6fffd4 commit cea65be
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions py-polars/tests/unit/io/database/test_read.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cea65be

Please sign in to comment.