sphinx-toolbox / sphinx-licenseinfo

Sphinx directives for showing license information.
https://sphinx-licenseinfo.readthedocs.io/en/latest
MIT License
1 stars 1 forks source link

RFE: please upgarde for `docutils` >= 0.17.1 and `sphinx` 5.x #14

Open kloczek opened 2 years ago

kloczek commented 2 years ago

https://github.com/sphinx-toolbox/sphinx-licenseinfo/blob/39dad5b176a81dfc9c20e37e4dc8810b13c55b8a/requirements.txt#L2

kloczek commented 2 years ago

Looks like hgenerally sphinx-licenseinfo needs to be updated for sphinx 5.x because pytest is failing in many units

```console + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-sphinx-licenseinfo-0.3.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-sphinx-licenseinfo-0.3.1-2.fc35.x86_64/usr/lib/python3.8/site-packages + /usr/bin/pytest -ra =========================================================================== test session starts ============================================================================ platform linux -- Python 3.8.13, pytest-7.1.2, pluggy-1.0.0 Test session started at 04:39:48 rootdir: /home/tkloczko/rpmbuild/BUILD/sphinx-licenseinfo-0.3.1, configfile: tox.ini plugins: datadir-1.3.1, regressions-2.3.1, timeout-2.1.0 timeout: 300.0s timeout method: signal timeout func_only: False collected 92 items tests/test_links.py ............................................ [ 47%] tests/test_output.py .FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF [100%] ================================================================================= FAILURES ================================================================================= _____________________________________________________________________________ test_html_output _____________________________________________________________________________ app = , html_regression = , fake_virtualenv = None @pytest.mark.usefixtures("doc_root") @pytest.mark.sphinx("html", testroot="test-sphinx-licenseinfo") def test_html_output( app: Sphinx, html_regression: HTMLRegressionFixture, fake_virtualenv, ): srcdir = PathPlus(app.srcdir) for file in ["bsd-2-clause.rst", "gpl-3.0.rst", "lgpl-3.0.rst", "mit.rst"]: shutil.copy2(PathPlus(__file__).parent / "examples" / file, srcdir / "examples" / file) shutil.copy2(PathPlus(__file__).parent / "GIMP_COPYING", srcdir / "GIMP_COPYING") app.build() for lic in ["bsd-2-clause", "gpl-3.0", "lgpl-3.0", "mit"]: output_file = PathPlus(app.outdir) / "examples" / f"{lic}.html" page = BeautifulSoup(output_file.read_text(), "html5lib") > check_html_output(page, html_regression, extension=f"_{lic}.html") tests/test_output.py:122: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ [..] =========================================================================== slowest 25 durations =========================================================================== 0.41s call tests/test_output.py::test_html_output 0.27s call tests/test_output.py::test_html_output_licenses[MPL-2.0] 0.27s call tests/test_output.py::test_html_output_licenses[EUPL-1.2] 0.27s call tests/test_output.py::test_html_output_licenses[NCSA] 0.27s call tests/test_output.py::test_html_output_licenses[CC-BY-SA-4.0] 0.26s call tests/test_output.py::test_html_output_licenses[CERN-OHL-W-2.0] 0.25s call tests/test_output.py::test_html_output_licenses[BSD-3-Clause-Clear] 0.25s call tests/test_output.py::test_html_output_licenses[AFL-3.0] 0.23s call tests/test_output.py::test_html_output_licenses[OSL-3.0] 0.22s call tests/test_output.py::test_html_output_licenses[ODbL-1.0] 0.22s call tests/test_output.py::test_html_output_licenses[UPL-1.0] 0.22s call tests/test_output.py::test_html_output_licenses[EUPL-1.1] 0.22s call tests/test_output.py::test_html_output_licenses[MulanPSL-2.0] 0.22s call tests/test_output.py::test_html_output_licenses[MS-RL] 0.22s call tests/test_output.py::test_html_output_licenses[LGPL-3.0] 0.22s call tests/test_output.py::test_html_output_licenses[LGPL-2.1] 0.22s call tests/test_output.py::test_html_output_licenses[Vim] 0.21s call tests/test_output.py::test_html_output_licenses[GPL-3.0] 0.21s call tests/test_output.py::test_html_output_licenses[Zlib] 0.21s call tests/test_output.py::test_html_output_licenses[OFL-1.1] 0.21s call tests/test_output.py::test_html_output_licenses[AGPL-3.0] 0.21s call tests/test_output.py::test_html_output_licenses[GPL-2.0] 0.21s call tests/test_output.py::test_html_output_licenses[CC-BY-4.0] 0.21s call tests/test_output.py::test_html_output_licenses[CECILL-2.1] 0.21s call tests/test_output.py::test_html_output_licenses[EPL-1.0] ========================================================================= short test summary info ========================================================================== FAILED tests/test_output.py::test_html_output - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[0BSD] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[AFL-3.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[AGPL-3.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[Apache-2.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[Artistic-2.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[BSD-2-Clause] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[BSD-3-Clause-Clear] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[BSD-3-Clause] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[BSD-4-Clause] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[BSL-1.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[CC-BY-4.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[CC-BY-SA-4.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[CC0-1.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[CECILL-2.1] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[CERN-OHL-P-2.0] - Failed: File not found in data directory, created: FAILED tests/test_output.py::test_html_output_licenses[CERN-OHL-S-2.0] - Failed: File not found in data directory, created: FAILED tests/test_output.py::test_html_output_licenses[CERN-OHL-W-2.0] - Failed: File not found in data directory, created: FAILED tests/test_output.py::test_html_output_licenses[ECL-2.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[EPL-1.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[EPL-2.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[EUPL-1.1] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[EUPL-1.2] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[GPL-2.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[GPL-3.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[ISC] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[LGPL-2.1] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[LGPL-3.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[LPPL-1.3c] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[MIT-0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[MIT] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[MPL-2.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[MS-PL] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[MS-RL] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[MulanPSL-2.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[NCSA] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[ODbL-1.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[OFL-1.1] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[OSL-3.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[PostgreSQL] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[Unlicense] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[UPL-1.0] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[Vim] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[WTFPL] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_licenses[Zlib] - AssertionError: FILES DIFFER: FAILED tests/test_output.py::test_html_output_problematic - assert 'problematic.rst:15: WARNING: Error in "license" directive:\nno content permitted.\n\n.. license:: sph... FAILED tests/test_output.py::test_latex_output - AssertionError: FILES DIFFER: ```
kloczek commented 1 year ago

gentle ping .. 🤔 Looks like it would be good as well update licenseinfo test suite for latest sphin 6.1.x

```console + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-sphinx-licenseinfo-0.3.1-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-sphinx-licenseinfo-0.3.1-2.fc35.x86_64/usr/lib/python3.8/site-packages + /usr/bin/pytest -ra -m 'not network' ============================= test session starts ============================== platform linux -- Python 3.8.16, pytest-7.2.2, pluggy-1.0.0 Test session started at 14:30:54 rootdir: /home/tkloczko/rpmbuild/BUILD/sphinx-licenseinfo-0.3.1, configfile: tox.ini plugins: datadir-1.4.1, regressions-2.4.2, timeout-2.1.0 timeout: 300.0s timeout method: signal timeout func_only: False collected 92 items tests/test_links.py ............................................ [ 47%] tests/test_output.py EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE [100%] ==================================== ERRORS ==================================== _____________________ ERROR at setup of test_build_example _____________________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f534edc0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________________ ERROR at setup of test_html_output ______________________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4bec040> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________ ERROR at setup of test_html_output_licenses[0BSD] _______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b44160> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[AFL-3.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4bec280> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[AGPL-3.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f503ef70> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ___________ ERROR at setup of test_html_output_licenses[Apache-2.0] ____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4aa78b0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning __________ ERROR at setup of test_html_output_licenses[Artistic-2.0] ___________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4a90820> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning __________ ERROR at setup of test_html_output_licenses[BSD-2-Clause] ___________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f49638b0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _______ ERROR at setup of test_html_output_licenses[BSD-3-Clause-Clear] ________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4aa71f0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning __________ ERROR at setup of test_html_output_licenses[BSD-3-Clause] ___________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4c5f670> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning __________ ERROR at setup of test_html_output_licenses[BSD-4-Clause] ___________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4bebd30> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[BSL-1.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b45670> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[CC-BY-4.0] ____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4930b80> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning __________ ERROR at setup of test_html_output_licenses[CC-BY-SA-4.0] ___________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4beb700> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[CC0-1.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4aa7430> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ___________ ERROR at setup of test_html_output_licenses[CECILL-2.1] ____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4963670> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _________ ERROR at setup of test_html_output_licenses[CERN-OHL-P-2.0] __________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4aa2820> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _________ ERROR at setup of test_html_output_licenses[CERN-OHL-S-2.0] __________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4af2160> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _________ ERROR at setup of test_html_output_licenses[CERN-OHL-W-2.0] __________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4bec550> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[ECL-2.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4bebdc0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[EPL-1.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b66ca0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[EPL-2.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4a81940> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[EUPL-1.1] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b868b0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[EUPL-1.2] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4a903a0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[GPL-2.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4aa25e0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[GPL-3.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f49fb160> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _______________ ERROR at setup of test_html_output_licenses[ISC] _______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4af2c10> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[LGPL-2.1] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4bebc10> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[LGPL-3.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b45820> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[LPPL-1.3c] ____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4c5f670> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________ ERROR at setup of test_html_output_licenses[MIT-0] ______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b45280> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _______________ ERROR at setup of test_html_output_licenses[MIT] _______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4af2160> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[MPL-2.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b86700> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________ ERROR at setup of test_html_output_licenses[MS-PL] ______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4abc8b0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________ ERROR at setup of test_html_output_licenses[MS-RL] ______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b86dc0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning __________ ERROR at setup of test_html_output_licenses[MulanPSL-2.0] ___________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4a16430> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________ ERROR at setup of test_html_output_licenses[NCSA] _______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4af2a60> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[ODbL-1.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b66f70> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[OFL-1.1] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f48898b0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[OSL-3.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b66160> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ___________ ERROR at setup of test_html_output_licenses[PostgreSQL] ____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4b86550> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ____________ ERROR at setup of test_html_output_licenses[Unlicense] ____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4a47670> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________ ERROR at setup of test_html_output_licenses[UPL-1.0] _____________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4a6e3a0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _______________ ERROR at setup of test_html_output_licenses[Vim] _______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4a47790> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________ ERROR at setup of test_html_output_licenses[WTFPL] ______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f49308b0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ______________ ERROR at setup of test_html_output_licenses[Zlib] _______________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f4af2820> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ________________ ERROR at setup of test_html_output_problematic ________________ test_params = {'shared_result': None} app_params = app_params(args=['html'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f47bf1f0> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning _____________________ ERROR at setup of test_latex_output ______________________ test_params = {'shared_result': None} app_params = app_params(args=['latex'], kwargs={'srcdir': path('/tmp/pytest-of-tkloczko/pytest-301/test-sphinx-licenseinfo')}) make_app = .make at 0x7f41f48cd820> shared_result = @pytest.fixture(scope='function') def app(test_params: dict, app_params: tuple[dict, dict], make_app: Callable, shared_result: SharedResult) -> Generator[SphinxTestApp, None, None]: """ Provides the 'sphinx.application.Sphinx' object """ args, kwargs = app_params > app_ = make_app(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:132: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /usr/lib/python3.8/site-packages/sphinx/testing/fixtures.py:178: in make app_: Any = SphinxTestApp(*args, **kwargs) /usr/lib/python3.8/site-packages/sphinx/testing/util.py:136: in __init__ super().__init__(srcdir, confdir, outdir, doctreedir, /usr/lib/python3.8/site-packages/sphinx/application.py:219: in __init__ self.setup_extension(extension) /usr/lib/python3.8/site-packages/sphinx/application.py:398: in setup_extension self.registry.load_extension(self, extname) /usr/lib/python3.8/site-packages/sphinx/registry.py:443: in load_extension mod = import_module(extname) /usr/lib64/python3.8/importlib/__init__.py:127: in import_module return _bootstrap._gcd_import(name[level:], package, level) /usr/lib/python3.8/site-packages/sphinxcontrib/htmlhelp/__init__.py:26: in from sphinx.util import progress_message _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = name = 'progress_message' def __getattr__(self, name: str) -> Any: if name not in self._objects: return getattr(self._module, name) canonical_name = self._names.get(name, None) if canonical_name is not None: > warnings.warn(f"The alias '{self._modname}.{name}' is deprecated, " f"use '{canonical_name}' instead. " "Check CHANGES for Sphinx API modifications.", self._warning, stacklevel=3) E sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progress_message' is deprecated, use 'sphinx.util.display.progress_message' instead. Check CHANGES for Sphinx API modifications. /usr/lib/python3.8/site-packages/sphinx/deprecation.py:46: RemovedInSphinx80Warning ============================= slowest 25 durations ============================= 0.26s setup tests/test_output.py::test_build_example 0.25s call tests/test_links.py::test_links[ISC] 0.24s call tests/test_links.py::test_links[CC-BY-4.0] 0.24s call tests/test_links.py::test_links[MS-RL] 0.24s call tests/test_links.py::test_links[BSD-2-Clause] 0.23s call tests/test_links.py::test_links[MIT] 0.23s call tests/test_links.py::test_links[WTFPL] 0.23s call tests/test_links.py::test_links[LGPL-3.0] 0.23s call tests/test_links.py::test_links[PostgreSQL] 0.23s call tests/test_links.py::test_links[MulanPSL-2.0] 0.23s call tests/test_links.py::test_links[LGPL-2.1] 0.23s call tests/test_links.py::test_links[MS-PL] 0.23s call tests/test_links.py::test_links[BSD-3-Clause] 0.23s call tests/test_links.py::test_links[EPL-2.0] 0.23s call tests/test_links.py::test_links[MIT-0] 0.23s call tests/test_links.py::test_links[LPPL-1.3c] 0.23s call tests/test_links.py::test_links[CERN-OHL-S-2.0] 0.23s call tests/test_links.py::test_links[NCSA] 0.23s call tests/test_links.py::test_links[OSL-3.0] 0.23s call tests/test_links.py::test_links[CERN-OHL-P-2.0] 0.23s call tests/test_links.py::test_links[BSD-4-Clause] 0.23s call tests/test_links.py::test_links[EPL-1.0] 0.22s call tests/test_links.py::test_links[BSD-3-Clause-Clear] 0.22s call tests/test_links.py::test_links[EUPL-1.1] 0.22s call tests/test_links.py::test_links[Unlicense] =========================== short test summary info ============================ ERROR tests/test_output.py::test_build_example - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[0BSD] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[AFL-3.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[AGPL-3.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[Apache-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[Artistic-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[BSD-2-Clause] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[BSD-3-Clause-Clear] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[BSD-3-Clause] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[BSD-4-Clause] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[BSL-1.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[CC-BY-4.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[CC-BY-SA-4.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[CC0-1.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[CECILL-2.1] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[CERN-OHL-P-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[CERN-OHL-S-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[CERN-OHL-W-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[ECL-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[EPL-1.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[EPL-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[EUPL-1.1] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[EUPL-1.2] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[GPL-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[GPL-3.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[ISC] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[LGPL-2.1] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[LGPL-3.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[LPPL-1.3c] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[MIT-0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[MIT] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[MPL-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[MS-PL] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[MS-RL] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[MulanPSL-2.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[NCSA] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[ODbL-1.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[OFL-1.1] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[OSL-3.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[PostgreSQL] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[Unlicense] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[UPL-1.0] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[Vim] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[WTFPL] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_licenses[Zlib] - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_html_output_problematic - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ERROR tests/test_output.py::test_latex_output - sphinx.deprecation.RemovedInSphinx80Warning: The alias 'sphinx.util.progres... ======================== 44 passed, 48 errors in 14.53s ======================== ```