From c91ea0dca68405ccc67b7e8edc0b2ababa303626f349958bbafac5ff3da897c1 Mon Sep 17 00:00:00 2001 From: Steve Kowalik Date: Mon, 26 Sep 2022 02:22:35 +0000 Subject: [PATCH] Skip some tests on i586 due to overflows OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-librosa?expand=0&rev=23 --- python-librosa.changes | 2 +- python-librosa.spec | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/python-librosa.changes b/python-librosa.changes index 5b1a321..bed4a64 100644 --- a/python-librosa.changes +++ b/python-librosa.changes @@ -1,5 +1,5 @@ ------------------------------------------------------------------- -Tue Sep 20 05:58:10 UTC 2022 - Steve Kowalik +Mon Sep 26 02:21:59 UTC 2022 - Steve Kowalik - Update to 0.9.2: * Fixed librosa.show_versions to match package dependencies. diff --git a/python-librosa.spec b/python-librosa.spec index e3dbb0f..c12df90 100644 --- a/python-librosa.spec +++ b/python-librosa.spec @@ -100,6 +100,12 @@ donttest+=" or test_display" donttest+=" or soxr" # fails with current Tumbleweed donttest+=" or test_pyin_multi_center" +# Overflow on i586 +if [ $(getconf LONG_BIT) -eq 32 ]; then + donttest+=" or test_tempo or test_hybrid_cqt or test_stft_winsizes" + donttest+=" or test_istft_reconstruction or test_trim" + donttest+=" or test_nnls_multiblock" +fi %pytest -k "not (${donttest:4})" %files %{python_files}