We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa78887 + 09ad07b commit 7d80677Copy full SHA for 7d80677
pkgs/development/python-modules/nutpie/default.nix
@@ -1,5 +1,6 @@
1
{
2
lib,
3
+ stdenv,
4
buildPythonPackage,
5
fetchFromGitHub,
6
rustPlatform,
@@ -81,6 +82,11 @@ buildPythonPackage rec {
81
82
writableTmpDirAsHomeHook
83
];
84
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
+
90
disabledTestPaths = [
91
# Require unpackaged bridgestan
92
"tests/test_stan.py"
0 commit comments