diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-02-03 22:10:43 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2019-02-14 02:20:55 +0900 |
commit | 891178e8ed6cde1b7bf3048ca73b784caf96e010 (patch) | |
tree | 52784bb45ac30de56b1cd758757f14f18cbf8ab6 /tests/test_ext_apidoc.py | |
parent | 973fbb81e48f1574741c9babebd5d8b7a036e8cb (diff) | |
download | sphinx-git-891178e8ed6cde1b7bf3048ca73b784caf96e010.tar.gz |
test: Reduce warnings on building test-root
Note: all warnings are tested on test-warnings.
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() |