pypy3Packages.sphinx: update disabled test paths

but cannot currently be tested due to pypy not understanding the type
keyword
This commit is contained in:
Sandro Jäckel 2026-02-26 18:44:39 +01:00
commit 8a07895dc2
No known key found for this signature in database
GPG key ID: 236B6291555E8401

View file

@ -95,11 +95,11 @@ buildPythonPackage rec {
disabledTestPaths = lib.optionals isPyPy [
# internals are asserted which are sightly different in PyPy
"tests/test_extensions/test_ext_autodoc.py"
"tests/test_extensions/test_ext_autodoc_autoclass.py"
"tests/test_extensions/test_ext_autodoc_autofunction.py"
"tests/test_extensions/test_ext_autodoc_automodule.py"
"tests/test_extensions/test_ext_autodoc_preserve_defaults.py"
"tests/test_ext_autodoc/test_ext_autodoc.py"
"tests/test_ext_autodoc/test_ext_autodoc_autoclass.py"
"tests/test_ext_autodoc/test_ext_autodoc_autofunction.py"
"tests/test_ext_autodoc/test_ext_autodoc_automodule.py"
"tests/test_ext_autodoc/test_ext_autodoc_preserve_defaults.py"
"tests/test_util/test_util_inspect.py"
"tests/test_util/test_util_typing.py"
];