From 42cedbeb91a254124bc61612c236f064c00bda07 Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 29 Jun 2026 16:11:46 +0300 Subject: [PATCH] python3Packages.scipy: skip another test on aarch64-linux --- pkgs/development/python-modules/scipy/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/scipy/default.nix b/pkgs/development/python-modules/scipy/default.nix index 52b1b035c20c..75c66680de00 100644 --- a/pkgs/development/python-modules/scipy/default.nix +++ b/pkgs/development/python-modules/scipy/default.nix @@ -106,6 +106,11 @@ buildPythonPackage (finalAttrs: { # see: https://github.com/scipy/scipy/issues/25488 "test_nyquist" ] + ++ lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ + # more flakiness + # see: https://github.com/scipy/scipy/issues/25522 + "test_convergence" + ] ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ # The following tests are broken on aarch64-darwin with newer compilers and library versions. # See https://github.com/scipy/scipy/issues/18308