python312Packages.nutpie: disable flaky test on aarch64-linux

This commit is contained in:
Gaetan Lepage
2025-04-17 17:37:00 +02:00
parent 996908bc2a
commit 09ad07b2d5
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
rustPlatform,
@@ -81,6 +82,11 @@ buildPythonPackage rec {
writableTmpDirAsHomeHook
];
disabledTests = lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [
# flaky (assert np.float64(0.0017554642626285276) > 0.01)
"test_normalizing_flow"
];
disabledTestPaths = [
# Require unpackaged bridgestan
"tests/test_stan.py"