diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-20 10:53:08 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-20 11:13:00 +0200 |
commit | 8e817c0441b57fbaaf43be6c6032729a87ebfd5f (patch) | |
tree | e799c4483addfbf2c20c7a533c4c4100fe84fed8 /dev-python/numpy | |
parent | www-client/falkon: amd64 stable wrt bug #835889 (diff) | |
download | gentoo-8e817c0441b57fbaaf43be6c6032729a87ebfd5f.tar.gz gentoo-8e817c0441b57fbaaf43be6c6032729a87ebfd5f.tar.bz2 gentoo-8e817c0441b57fbaaf43be6c6032729a87ebfd5f.zip |
dev-python/numpy: Skip test_identityless_reduction_huge_array on arm
Closes: https://bugs.gentoo.org/846548
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/numpy')
-rw-r--r-- | dev-python/numpy/numpy-1.22.3.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
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 |