python310Packages.jax: Disable tests that fail with numpy 1.24

https://hydra.nixos.org/build/211633749
This commit is contained in:
Martin Weinelt
2023-03-10 22:17:01 +01:00
parent 909bb6ad4b
commit 3bc5413529

View File

@@ -69,6 +69,12 @@ buildPythonPackage rec {
disabledTests = [
# Exceeds tolerance when the machine is busy
"test_custom_linear_solve_aux"
# UserWarning: Explicitly requested dtype <class 'numpy.float64'>
# requested in astype is not available, and will be truncated to
# dtype float32. (With numpy 1.24)
"LaxBackedScipyStatsTests::testKde3"
"LaxBackedScipyStatsTests::testKde5"
"LaxBackedScipyStatsTests::testKde6"
] ++ lib.optionals usingMKL [
# See
# * https://github.com/google/jax/issues/9705