15
0

Accepting request 966733 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/966733
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cheroot?expand=0&rev=19
This commit is contained in:
2022-04-05 17:54:53 +00:00
committed by Git OBS Bridge
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
-------------------------------------------------------------------
Sat Apr 2 11:22:09 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Skip a test causing errors in pytest 7 -- gh#cherrypy/cheroot#502
-------------------------------------------------------------------
Sat Jan 22 17:17:44 UTC 2022 - Ben Greiner <code@bnavigator.de>

View File

@@ -112,7 +112,10 @@ pushd testclean
%python_expand pytest_opts+=" --ignore %{buildroot}%{$python_sitelib}/cheroot/test/test_wsgi.py"
%endif
# test_tls_client_auth[...-False-localhost-builtin] fails ocassionally on server-side OBS
%pytest --pyargs cheroot $pytest_opts -k "not (test_tls_client_auth and False-localhost-builtin)"
donttest="(test_tls_client_auth and False-localhost-builtin)"
# https://github.com/cherrypy/cheroot/issues/502
donttest="$donttest or test_high_number_of_file_descriptors"
%pytest --pyargs cheroot $pytest_opts -k "not ($donttest)"
popd
%pre