Skip more tests on i686, they are too big

This commit is contained in:
Miro Hrončok 2022-10-21 18:52:39 +02:00
parent fbe6def60a
commit e742cd26a5

View File

@ -153,8 +153,9 @@ export PYTHONPATH=%{buildroot}%{python3_sitearch}
# test_ppc64_ibm_double_double128 is unnecessary now that ppc64le has switched long doubles to IEEE format.
# https://github.com/numpy/numpy/issues/21094
%ifarch %{ix86}
# Weird RuntimeWarnings on i686, siilar to https://github.com/numpy/numpy/issues/13173
%global ix86_k and not test_vector_matrix_values and not test_matrix_vector_values
# Weird RuntimeWarnings on i686, similar to https://github.com/numpy/numpy/issues/13173
# Some tests also overflow on 32bit
%global ix86_k and not test_vector_matrix_values and not test_matrix_vector_values and not test_identityless_reduction_huge_array and not (TestKind and test_all)
%endif
python3 runtests.py --no-build -- -ra -k 'not test_ppc64_ibm_double_double128 %{?ix86_k}'
%endif