summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2018-09-18 16:48:01 +0100
committerStephen Finucane <stephen@that.guru>2018-09-18 16:48:01 +0100
commit3ddb9ca19da410ff89d51789f72baf4bcd7e0ab0 (patch)
treed946959a7d7166cea993042be829a4b660fdcf4b /tox.ini
parent30e823d89064d15384508462709988024924637d (diff)
downloadpatchwork-3ddb9ca19da410ff89d51789f72baf4bcd7e0ab0.tar
patchwork-3ddb9ca19da410ff89d51789f72baf4bcd7e0ab0.tar.gz
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 <stephen@that.guru>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 3684d71..fb7bd85 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