Skip to content

Commit

Permalink
Remove test skips for Python 3.14
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Oct 19, 2024
1 parent 25ad2a0 commit b815ae7
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/test_extensions/test_ext_autodoc_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@

from tests.test_extensions.autodoc_util import do_autodoc

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'


Expand Down Expand Up @@ -187,7 +182,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'
Expand Down Expand Up @@ -371,7 +365,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__'}
Expand Down

0 comments on commit b815ae7

Please sign in to comment.