python313Packages.scipy: remove tests not failing anymore

This commit is contained in:
Doron Behar
2025-06-23 12:31:38 +03:00
parent 5ae70921da
commit cc642ccc8b
@@ -143,23 +143,17 @@ buildPythonPackage {
pytest-xdist
];
disabledTests =
[
"test_cumulative_simpson_against_simpson_with_default_dx"
# https://github.com/scipy/scipy/issues/22789
"test_funcs"
]
++ 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
];
disabledTests = 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);