Accepting request 999014 from devel:languages:python:numeric

- Skip a test failing with setuptools 62+

OBS-URL: https://build.opensuse.org/request/show/999014
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-scikit-build?expand=0&rev=10
This commit is contained in:
Dominique Leuenberger 2022-08-24 13:11:43 +00:00 committed by Git OBS Bridge
commit 61dab7e5f6
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Aug 24 09:44:44 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Skip a test failing with setuptools 62+
-------------------------------------------------------------------
Thu Mar 31 20:50:59 UTC 2022 - Ben Greiner <code@bnavigator.de>

View File

@ -85,7 +85,10 @@ sed -i '/addopts/ d' setup.cfg
%check
export PYTHONPATH=/tmp/fakepythonroot%{$python_sitelib}
# test_pep518 needs a wheelhouse with downloaded wheels including platform dependent cmake
%pytest -k "not test_pep518"
donttest="test_pep518"
# setuptools 62+ discovery fails here
donttest="$donttest or (test_script_keyword and pure)"
%pytest -k "not ($donttest)"
%files %{python_files}
%doc AUTHORS.rst README.rst CONTRIBUTING.rst HISTORY.rst docs/