From dfb46856cc1d56533d19fdd653b0435ba2979a7a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 27 Sep 2025 22:30:03 +0000 Subject: [PATCH] python3Packages.brax: skip failing tests --- pkgs/development/python-modules/brax/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/brax/default.nix b/pkgs/development/python-modules/brax/default.nix index 11b4ac0dc9c6..3af04fe0b318 100644 --- a/pkgs/development/python-modules/brax/default.nix +++ b/pkgs/development/python-modules/brax/default.nix @@ -82,7 +82,14 @@ buildPythonPackage rec { transforms3d ]; - disabledTests = lib.optionals stdenv.hostPlatform.isAarch64 [ + disabledTests = [ + # AttributeError: 'functools.partial' object has no attribute 'value' + "testModelEncoding0" + "testModelEncoding1" + "testTrain" + "testTrainDomainRandomize" + ] + ++ lib.optionals stdenv.hostPlatform.isAarch64 [ # Flaky: # AssertionError: Array(-0.00135638, dtype=float32) != 0.0 within 0.001 delta (Array(0.00135638, dtype=float32) difference) "test_pendulum_period2"