From 8272dcb64ced483632d33c7ae452ec168ed6a983 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 16 Oct 2025 12:47:57 +0000 Subject: [PATCH] python3Packages.equinox: disable failing test --- pkgs/development/python-modules/equinox/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/equinox/default.nix b/pkgs/development/python-modules/equinox/default.nix index d21a6774342c..d96939cb3a92 100644 --- a/pkgs/development/python-modules/equinox/default.nix +++ b/pkgs/development/python-modules/equinox/default.nix @@ -57,7 +57,11 @@ buildPythonPackage rec { pytestCheckHook ]; - disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ + disabledTests = [ + # Failed: DID NOT WARN. No warnings of type (,) were emitted. + "test_jax_transform_warn" + ] + ++ lib.optionals stdenv.hostPlatform.isDarwin [ # SystemError: nanobind::detail::nb_func_error_except(): exception could not be translated! "test_filter" ];