commit: 8e817c0441b57fbaaf43be6c6032729a87ebfd5f Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Fri May 20 08:53:08 2022 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Fri May 20 09:13:00 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e817c04
dev-python/numpy: Skip test_identityless_reduction_huge_array on arm Closes: https://bugs.gentoo.org/846548 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/numpy/numpy-1.22.3.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/numpy/numpy-1.22.3.ebuild b/dev-python/numpy/numpy-1.22.3.ebuild index 50089a576034..ed6b38f7da67 100644 --- a/dev-python/numpy/numpy-1.22.3.ebuild +++ b/dev-python/numpy/numpy-1.22.3.ebuild @@ -143,7 +143,11 @@ python_test() { numpy/random/tests/test_generator_mt19937.py::TestRandomDist::test_pareto # more precision problems numpy/core/tests/test_einsum.py::TestEinsum::test_einsum_sums_int16 - # too large for the tiny x86 world + ) + fi + if use arm || use x86 ; then + EPYTEST_DESELECT+=( + # too large for 32-bit platforms numpy/core/tests/test_ufunc.py::TestUfunc::test_identityless_reduction_huge_array ) fi
