test: Rename test_autodoc.py to test_ext_autodoc.py

This commit is contained in:
Takeshi KOMIYA 2020-05-06 13:46:45 +09:00
parent 2ca76d2366
commit eef7e4cdd5
4 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ import platform
import pytest import pytest
from test_autodoc import do_autodoc from test_ext_autodoc import do_autodoc
IS_PYPY = platform.python_implementation() == 'PyPy' IS_PYPY = platform.python_implementation() == 'PyPy'

View File

@ -11,7 +11,7 @@
import pytest import pytest
from sphinx.ext.autodoc import between, cut_lines from sphinx.ext.autodoc import between, cut_lines
from test_autodoc import do_autodoc from test_ext_autodoc import do_autodoc
@pytest.mark.sphinx('html', testroot='ext-autodoc') @pytest.mark.sphinx('html', testroot='ext-autodoc')

View File

@ -10,7 +10,7 @@
import pytest import pytest
from test_autodoc import do_autodoc from test_ext_autodoc import do_autodoc
@pytest.mark.sphinx('html', testroot='ext-autodoc') @pytest.mark.sphinx('html', testroot='ext-autodoc')