From: Stephen Finucane Date: Tue, 18 Sep 2018 15:48:01 +0000 (+0100) Subject: tox: Specify doctree directory X-Git-Tag: v2.2.0-rc1~282 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ddb9ca19da410ff89d51789f72baf4bcd7e0ab0;p=thirdparty%2Fpatchwork.git tox: Specify doctree directory Sphinx 1.8 has a change in where it places 'doctree' directories. Rather than ignore this directory via gitignore, specify where this directory should go. This will ensure future changes in Sphinx's behavior won't affect us. Signed-off-by: Stephen Finucane --- diff --git a/tox.ini b/tox.ini index 3684d716..fb7bd85e 100644 --- a/tox.ini +++ b/tox.ini @@ -49,7 +49,7 @@ exclude = ./patchwork/migrations deps = -r{toxinidir}/docs/requirements.txt commands = - sphinx-build -E -W -b html docs docs/_build/html + sphinx-build -E -W -b html -d docs/_build/doctrees docs docs/_build/html [testenv:lint] basepython = python2.7