Skip to content

Commit

Permalink
🧪 Fix python 3.13 tests (#12373)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed May 15, 2024
1 parent c06f246 commit 3496de6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tests/test_extensions/test_ext_autodoc.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ def test_autodoc_special_members(app):
"special-members": None,
}
if sys.version_info >= (3, 13, 0, 'alpha', 5):
options["exclude-members"] = "__static_attributes__"
options["exclude-members"] = "__static_attributes__,__firstlineno__"
actual = do_autodoc(app, 'class', 'target.Class', options)
assert list(filter(lambda l: '::' in l, actual)) == [
'.. py:class:: Class(arg)',
Expand Down
31 changes: 21 additions & 10 deletions tests/test_extensions/test_ext_autodoc_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -679,6 +679,10 @@ def test_autodoc_typehints_signature(app):
type_o = "~typing.Any | None"
else:
type_o = "~typing.Any"
if sys.version_info[:2] >= (3, 13):
type_ppp = "pathlib._local.PurePosixPath"
else:
type_ppp = "pathlib.PurePosixPath"

options = {"members": None,
"undoc-members": None}
Expand All @@ -703,7 +707,7 @@ def test_autodoc_typehints_signature(app):
'',
'.. py:data:: CONST3',
' :module: target.typehints',
' :type: ~pathlib.PurePosixPath',
f' :type: ~{type_ppp}',
" :value: PurePosixPath('/a/b/c')",
'',
' docstring',
Expand All @@ -726,7 +730,7 @@ def test_autodoc_typehints_signature(app):
'',
' .. py:attribute:: Math.CONST3',
' :module: target.typehints',
' :type: ~pathlib.PurePosixPath',
f' :type: ~{type_ppp}',
" :value: PurePosixPath('/a/b/c')",
'',
'',
Expand All @@ -748,7 +752,7 @@ def test_autodoc_typehints_signature(app):
'',
' .. py:property:: Math.path',
' :module: target.typehints',
' :type: ~pathlib.PurePosixPath',
f' :type: ~{type_ppp}',
'',
'',
' .. py:property:: Math.prop',
Expand All @@ -773,7 +777,7 @@ def test_autodoc_typehints_signature(app):
'',
' docstring',
'',
" alias of TypeVar('T', bound=\\ :py:class:`~pathlib.PurePosixPath`)",
f" alias of TypeVar('T', bound=\\ :py:class:`~{type_ppp}`)",
'',
'',
'.. py:function:: complex_func(arg1: str, arg2: List[int], arg3: Tuple[int, '
Expand Down Expand Up @@ -802,6 +806,10 @@ def test_autodoc_typehints_signature(app):
@pytest.mark.sphinx('html', testroot='ext-autodoc',
confoverrides={'autodoc_typehints': "none"})
def test_autodoc_typehints_none(app):
if sys.version_info[:2] >= (3, 13):
type_ppp = "pathlib._local.PurePosixPath"
else:
type_ppp = "pathlib.PurePosixPath"
options = {"members": None,
"undoc-members": None}
actual = do_autodoc(app, 'module', 'target.typehints', options)
Expand Down Expand Up @@ -887,7 +895,7 @@ def test_autodoc_typehints_none(app):
'',
' docstring',
'',
" alias of TypeVar('T', bound=\\ :py:class:`~pathlib.PurePosixPath`)",
f" alias of TypeVar('T', bound=\\ :py:class:`~{type_ppp}`)",
'',
'',
'.. py:function:: complex_func(arg1, arg2, arg3=None, *args, **kwargs)',
Expand Down Expand Up @@ -1417,7 +1425,10 @@ def test_autodoc_typehints_format_fully_qualified(app):
type_o = "typing.Any | None"
else:
type_o = "typing.Any"

if sys.version_info[:2] >= (3, 13):
type_ppp = "pathlib._local.PurePosixPath"
else:
type_ppp = "pathlib.PurePosixPath"
options = {"members": None,
"undoc-members": None}
actual = do_autodoc(app, 'module', 'target.typehints', options)
Expand All @@ -1441,7 +1452,7 @@ def test_autodoc_typehints_format_fully_qualified(app):
'',
'.. py:data:: CONST3',
' :module: target.typehints',
' :type: pathlib.PurePosixPath',
f' :type: {type_ppp}',
" :value: PurePosixPath('/a/b/c')",
'',
' docstring',
Expand All @@ -1464,7 +1475,7 @@ def test_autodoc_typehints_format_fully_qualified(app):
'',
' .. py:attribute:: Math.CONST3',
' :module: target.typehints',
' :type: pathlib.PurePosixPath',
f' :type: {type_ppp}',
" :value: PurePosixPath('/a/b/c')",
'',
'',
Expand All @@ -1486,7 +1497,7 @@ def test_autodoc_typehints_format_fully_qualified(app):
'',
' .. py:property:: Math.path',
' :module: target.typehints',
' :type: pathlib.PurePosixPath',
f' :type: {type_ppp}',
'',
'',
' .. py:property:: Math.prop',
Expand All @@ -1511,7 +1522,7 @@ def test_autodoc_typehints_format_fully_qualified(app):
'',
' docstring',
'',
" alias of TypeVar('T', bound=\\ :py:class:`pathlib.PurePosixPath`)",
f" alias of TypeVar('T', bound=\\ :py:class:`{type_ppp}`)",
'',
'',
'.. py:function:: complex_func(arg1: str, arg2: List[int], arg3: Tuple[int, '
Expand Down

0 comments on commit 3496de6

Please sign in to comment.