Unverified Commit 17c82349 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

python3Packages.narwhals: disable tests that segfault on darwin (#458901)

parents e0878910 bffc1c97
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"
  ];