From c991a83ff7e1dfc103a29587d51b29a428cb9f84 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 6 Feb 2025 10:41:49 +0100 Subject: [PATCH] python312Packages.numba: skip failing test on aarch64-linux --- pkgs/development/python-modules/numba/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/numba/default.nix b/pkgs/development/python-modules/numba/default.nix index 86ac691dae94..fa72fbab6021 100644 --- a/pkgs/development/python-modules/numba/default.nix +++ b/pkgs/development/python-modules/numba/default.nix @@ -120,6 +120,11 @@ buildPythonPackage rec { "${python.sitePackages}/numba/tests/test_usecases.py" ]; + disabledTests = lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [ + # captured stderr: Fatal Python error: Segmentation fault + "test_sum1d_pyobj" + ]; + disabledTestPaths = lib.optionals (!testsWithoutSandbox) [ # See NOTE near passthru.tests.withoutSandbox "${python.sitePackages}/numba/cuda/tests"