From 85521e7f273bdf63011718ecf64b29ac9a575689 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Wed, 22 Oct 2014 10:38:43 -0400 Subject: [PATCH] Make 'tox -e docs' rebulid docs from scratch. Avoid make-like optimizations which can get out of sync after git operations. --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index faececa3682b..85b567ec2ca9 100644 --- a/tox.ini +++ b/tox.ini @@ -33,6 +33,7 @@ deps = basepython = python2.7 commands = + python -c "import shutil; shutil.rmtree('docs/_build')" sphinx-build -W -b html -d docs/_build/doctrees docs docs/_build/html deps = Sphinx