Skip to content

Commit 7d80677

Browse files
authored
python312Packages.nutpie: disable flaky test on aarch64-linux (#399500)
2 parents aa78887 + 09ad07b commit 7d80677

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkgs/development/python-modules/nutpie/default.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
lib,
3+
stdenv,
34
buildPythonPackage,
45
fetchFromGitHub,
56
rustPlatform,
@@ -81,6 +82,11 @@ buildPythonPackage rec {
8182
writableTmpDirAsHomeHook
8283
];
8384

85+
disabledTests = lib.optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64) [
86+
# flaky (assert np.float64(0.0017554642626285276) > 0.01)
87+
"test_normalizing_flow"
88+
];
89+
8490
disabledTestPaths = [
8591
# Require unpackaged bridgestan
8692
"tests/test_stan.py"

0 commit comments

Comments
 (0)