Accepting request 1084539 from home:marxin:branches:devel:languages:python

- Support Sphinx 7.0 by skipping of some tests that depend
  on legacy features (boo#1211051).

OBS-URL: https://build.opensuse.org/request/show/1084539
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pbr?expand=0&rev=154
This commit is contained in:
Dirk Mueller 2023-05-04 08:19:03 +00:00 committed by Git OBS Bridge
parent e969c86613
commit 22532fe380
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu May 4 07:09:44 UTC 2023 - Martin Liška <mliska@suse.cz>
- Support Sphinx 7.0 by skipping of some tests that depend
on legacy features (boo#1211051).
-------------------------------------------------------------------
Fri Apr 21 12:29:09 UTC 2023 - Dirk Müller <dmueller@suse.com>

View File

@ -89,7 +89,11 @@ dont_test="test_parse_requirements or test_requirement_parsing or test_pep_517_s
dont_test+="or test_write_git_changelog or test_build_doc or test_cmd_builder_override "
dont_test+="or test_cmd_builder_override_multiple_builders or test_extras_parsing "
dont_test+="or test_project_url_parsing or test_keywords_parsing "
dont_test+="or test_handling_of_whitespace_in_data_files"
dont_test+="or test_handling_of_whitespace_in_data_files "
# the following tests fail due to Sphinx 7.0 and removal of build_sphinx feature
# https://bugs.launchpad.net/pbr/+bug/2018453
dont_test+="or test_setup_py_build_sphinx or test_builders_config "
dont_test+="or test_default_api_build_dir or test_different_api_build_dir"
%pytest -k "not ($dont_test)"
%endif