Daniel Garcia
555de69fb6
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-sphinx-autodoc-typehints?expand=0&rev=53
28 lines
1.0 KiB
Diff
28 lines
1.0 KiB
Diff
---
|
|
tests/conftest.py | 13 ++-----------
|
|
1 file changed, 2 insertions(+), 11 deletions(-)
|
|
|
|
Index: sphinx_autodoc_typehints-1.25.2/tests/conftest.py
|
|
===================================================================
|
|
--- sphinx_autodoc_typehints-1.25.2.orig/tests/conftest.py
|
|
+++ sphinx_autodoc_typehints-1.25.2/tests/conftest.py
|
|
@@ -19,16 +19,8 @@ collect_ignore = ["roots"]
|
|
|
|
@pytest.fixture(scope="session")
|
|
def inv(pytestconfig: Config) -> Inventory:
|
|
- cache_path = f"python{sys.version_info.major}.{sys.version_info.minor}/objects.inv"
|
|
- assert pytestconfig.cache is not None
|
|
- inv_dict = pytestconfig.cache.get(cache_path, None)
|
|
- if inv_dict is not None:
|
|
- return Inventory(inv_dict)
|
|
-
|
|
- url = f"https://docs.python.org/{sys.version_info.major}.{sys.version_info.minor}/objects.inv"
|
|
- inv = Inventory(url=url)
|
|
- pytestconfig.cache.set(cache_path, inv.json_dict())
|
|
- return inv
|
|
+ inv_dict = '/usr/share/doc/packages/python@PYTHON_VERSION@/html/objects.inv'
|
|
+ return Inventory(inv_dict)
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|