Unverified Commit 529ad4a9 authored by Randy Eckenrode's avatar Randy Eckenrode
Browse files

python3Packages.pandas: disable unreliable tests

test_rolling.py is unreliable on aarch64-darwin depending on the
compiler used and possibly optimization settings. Disabling these tests
allows clang 16 to build Pandas on Darwin successfully.

See https://github.com/pandas-dev/pandas/issues/38921.
parent dba6d77a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -206,6 +206,8 @@ buildPythonPackage rec {
  ] ++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
    # tests/generic/test_finalize.py::test_binops[and_-args4-right] - AssertionError: assert {} == {'a': 1}
    "test_binops"
    # These tests are unreliable on aarch64-darwin. See https://github.com/pandas-dev/pandas/issues/38921.
    "test_rolling"
  ];

  # Tests have relative paths, and need to reference compiled C extensions