mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Remove test skips for Python 3.14 (#13041)
This commit is contained in:
@@ -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__'}
|
||||
|
Reference in New Issue
Block a user