From 6c7cf945c15067e2608c1846d9ea701ca326a3a0 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 26 Apr 2026 21:01:47 +0000 Subject: [PATCH] python3Packages.equinox: disable flaky test --- pkgs/development/python-modules/equinox/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/equinox/default.nix b/pkgs/development/python-modules/equinox/default.nix index 4cfb141ecdb0..2c71c42b3861 100644 --- a/pkgs/development/python-modules/equinox/default.nix +++ b/pkgs/development/python-modules/equinox/default.nix @@ -59,6 +59,12 @@ buildPythonPackage (finalAttrs: { pythonImportsCheck = [ "equinox" ]; + disabledTests = [ + # Flaky under heavy load: + # AssertionError: Non-linear scaling detected: ratio=1.56 + "test_speed_buffer_while" + ]; + meta = { description = "JAX library based around a simple idea: represent parameterised functions (such as neural networks) as PyTrees"; changelog = "https://github.com/patrick-kidger/equinox/releases/tag/${finalAttrs.src.tag}";