Commit bffc1c97 authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.narwhals: disable tests that segfault on darwin

parent 99fd0558
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  buildPythonPackage,
  dask,
  duckdb,
@@ -82,6 +83,11 @@ buildPythonPackage rec {
    "test_collect_empty"
  ];

  disabledTestPaths = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
    # Segfault in included polars/lazyframe
    "tests/tpch_q1_test.py"
  ];

  pytestFlags = [
    "-Wignore::DeprecationWarning"
  ];