Commit 41dfd84a authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files

python312Packages.equinox: disable failing test

parent cceebcb1
Loading
Loading
Loading
Loading
+10 −4
Original line number Diff line number Diff line
@@ -56,7 +56,13 @@ buildPythonPackage rec {
    pytestCheckHook
  ];

  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
  disabledTests =
    [
      # AssertionError: assert '<function te...n.<locals>.f>' == '<function f>'
      # https://github.com/patrick-kidger/equinox/issues/1008
      "test_function"
    ]
    ++ lib.optionals stdenv.hostPlatform.isDarwin [
      # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated!
      "test_filter"
    ];