- Add mark-network-tests.patch marking tests which require

network connection to run.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-librosa?expand=0&rev=52
This commit is contained in:
Matej Cepl 2024-10-04 20:55:20 +00:00 committed by Git OBS Bridge
parent d5e8ae22ac
commit f0940f91f0
3 changed files with 46 additions and 2 deletions

37
mark-network-tests.patch Normal file
View File

@ -0,0 +1,37 @@
---
setup.cfg | 2 ++
tests/test_multichannel.py | 1 +
tests/test_util.py | 1 +
3 files changed, 4 insertions(+)
--- a/setup.cfg
+++ b/setup.cfg
@@ -14,6 +14,8 @@ addopts = --mpl --mpl-baseline-path=tes
filterwarnings =
ignore::DeprecationWarning:audioread.*
ignore::DeprecationWarning:resampy.*
+markers =
+ network: tests requiring network connection
[flake8]
count = True
--- a/tests/test_multichannel.py
+++ b/tests/test_multichannel.py
@@ -914,6 +914,7 @@ def test_click_multi():
assert np.allclose(yout[..., 2000:2100], click)
+@pytest.mark.network
def test_nnls_multi(s_multi):
# Verify that a stereo melspectrogram can be reconstructed
--- a/tests/test_util.py
+++ b/tests/test_util.py
@@ -1396,6 +1396,7 @@ def test_cite_badversion():
librosa.cite(version="-1.5")
+@pytest.mark.network
@pytest.mark.xfail(raises=librosa.ParameterError)
def test_cite_unreleased():
librosa.cite("0.10.0.dev0")

View File

@ -5,6 +5,8 @@ Wed Oct 2 20:59:35 UTC 2024 - Matej Cepl <mcepl@cepl.eu>
the most recent version of SciPy (gh#librosa/librosa#1849).
- Add sysinfo.py to provide upstream with the required debugging
information.
- Add mark-network-tests.patch marking tests which require
network connection to run.
-------------------------------------------------------------------
Fri Sep 20 22:12:01 UTC 2024 - Matej Cepl <mcepl@cepl.eu>

View File

@ -35,6 +35,9 @@ Source20: sysinfo.py
# PATCH-FIX-UPSTREAM csr_matrix-attr-H.patch gh#librosa/librosa#1849 mcepl@suse.com
# csr_matrix.H in scipy has been removed
Patch0: csr_matrix-attr-H.patch
# PATCH-FIX-UPSTREAM mark-network-tests.patch mcepl@suse.com
# to skip test which require network access
Patch1: mark-network-tests.patch
BuildRequires: %{python_module SoundFile >= 0.12.1}
BuildRequires: %{python_module audioread >= 2.1.9}
BuildRequires: %{python_module base >= 3.7}
@ -153,8 +156,10 @@ notparallel+=" or test_zero_crossings"
donttest+=" or test_beat"
# gh#librosa/librosa#1880
donttest+=" or test_nnls_multiblock"
%pytest -k "not (${donttest} or ${notparallel})" -n auto
%pytest -k "not (${donttest}) and (${notparallel})"
#
donttest+=" or test_subsegment_badn"
%pytest -k "not (${donttest} or ${notparallel} or network)" -n auto
%pytest -k "not (${donttest} or network) and (${notparallel})"
%files %{python_files}
%doc AUTHORS.md README.md