diff options
author | Martin Liška <mliska@suse.cz> | 2023-04-21 03:22:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 02:22:10 +0100 |
commit | 77483f28244dac1e7459d09397180812cfb36946 (patch) | |
tree | 78585ee2ffd64963a7a10043f37684b899dcbefb | |
parent | d8f15c7361c4766667db65252b685f19d4a08b56 (diff) | |
download | sphinx-git-77483f28244dac1e7459d09397180812cfb36946.tar.gz |
Add missing test decorator for ``test_util_inspect`` (#11321)
-rw-r--r-- | tests/test_util_inspect.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index cc67e37b3..a14c8a15f 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -670,6 +670,7 @@ def test_isattributedescriptor(app): pass +@pytest.mark.sphinx(testroot='ext-autodoc') def test_isproperty(app): from target.functions import func from target.methods import Base |