diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-02-14 22:24:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-14 22:24:27 +0900 |
commit | cd542fb2af2088fa63e4afb4ba83a12d04f830fb (patch) | |
tree | 2c773c1dec616b922879e481bafc6cf8e2f6aa5b /tests/test_ext_apidoc.py | |
parent | c50b130357c7e7b21fb2bcafc9408963b7f42655 (diff) | |
parent | 891178e8ed6cde1b7bf3048ca73b784caf96e010 (diff) | |
download | sphinx-git-cd542fb2af2088fa63e4afb4ba83a12d04f830fb.tar.gz |
Merge pull request #6061 from tk0miya/reduce_warnings_of_rootcase
test: Reduce warnings on building test-root
Diffstat (limited to 'tests/test_ext_apidoc.py')
-rw-r--r-- | tests/test_ext_apidoc.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/test_ext_apidoc.py b/tests/test_ext_apidoc.py index 5bcbb3cc4..3f5f367c4 100644 --- a/tests/test_ext_apidoc.py +++ b/tests/test_ext_apidoc.py @@ -49,7 +49,6 @@ def apidoc_params(request): def test_simple(make_app, apidoc): outdir = apidoc.outdir assert (outdir / 'conf.py').isfile() - assert (outdir / 'autodoc_fodder.rst').isfile() assert (outdir / 'index.rst').isfile() app = make_app('text', srcdir=outdir) @@ -273,7 +272,6 @@ def test_excludes_module_should_not_be_skipped(apidoc): def test_multibyte_parameters(make_app, apidoc): outdir = apidoc.outdir assert (outdir / 'conf.py').isfile() - assert (outdir / 'autodoc_fodder.rst').isfile() assert (outdir / 'index.rst').isfile() conf_py = (outdir / 'conf.py').text() |