python313Packages.scipy: disable failing test

Upstream has acknowledged this test failures and is investigating a fix
for the 1.15.2 release.
This commit is contained in:
Martin Weinelt
2025-02-14 13:44:56 +01:00
parent 43a5de6cbb
commit b78528c39c
@@ -128,17 +128,21 @@ buildPythonPackage {
pytest-xdist
];
# The following tests are broken on aarch64-darwin with newer compilers and library versions.
# See https://github.com/scipy/scipy/issues/18308
disabledTests = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
"test_a_b_neg_int_after_euler_hypergeometric_transformation"
"test_dst4_definition_ortho"
"test_load_mat4_le"
"hyp2f1_test_case47"
"hyp2f1_test_case3"
"test_uint64_max"
"test_large_m4" # https://github.com/scipy/scipy/issues/22466
];
disabledTests =
[
"test_cumulative_simpson_against_simpson_with_default_dx"
]
++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [
# The following tests are broken on aarch64-darwin with newer compilers and library versions.
# See https://github.com/scipy/scipy/issues/18308
"test_a_b_neg_int_after_euler_hypergeometric_transformation"
"test_dst4_definition_ortho"
"test_load_mat4_le"
"hyp2f1_test_case47"
"hyp2f1_test_case3"
"test_uint64_max"
"test_large_m4" # https://github.com/scipy/scipy/issues/22466
];
doCheck = !(stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isDarwin);