Remove test skips for Python 3.14 (#13041)

This commit is contained in:
Adam Turner
2025-01-03 07:31:40 +00:00
committed by GitHub
parent 91b566de6b
commit 3028e818c9

View File

@@ -17,11 +17,6 @@ if TYPE_CHECKING:
from collections.abc import Iterator
from pathlib import Path
skip_py314_segfault = pytest.mark.skipif(
sys.version_info[:2] >= (3, 14),
reason='Segmentation fault: https://github.com/python/cpython/issues/125017',
)
IS_PYPY = platform.python_implementation() == 'PyPy'
@@ -194,7 +189,6 @@ def test_autodoc_class_signature_separated_init(app):
]
@skip_py314_segfault
@pytest.mark.sphinx('html', testroot='ext-autodoc')
def test_autodoc_class_signature_separated_new(app):
app.config.autodoc_class_signature = 'separated'
@@ -378,7 +372,6 @@ def test_autodoc_inherit_docstrings_for_inherited_members(app):
]
@skip_py314_segfault
@pytest.mark.sphinx('html', testroot='ext-autodoc')
def test_autodoc_docstring_signature(app):
options = {'members': None, 'special-members': '__init__, __new__'}