[Docs] Make tox -e docs fail on sphinx warnings

* Also cleanup isort command
This commit is contained in:
bendikro 2016-05-22 17:14:46 +02:00 committed by Calum Lind
parent a81f17a802
commit 7c07001bdc
1 changed files with 2 additions and 2 deletions

View File

@ -191,8 +191,8 @@ commands =
echo -e "sphinx-apidoc --force -o docs/source/modules/ deluge deluge/plugins"\
"\n""sphinx-build -v -E -T -b html -d docs/build/doctrees docs/source docs/build/html"
python -c "import subprocess, sys; proc = subprocess.Popen(\
'python setup.py build_docs', shell=True, stdout=subprocess.PIPE);\
out, err = proc.communicate(); print err; sys.exit(bool(err))"
'python setup.py build_docs', shell=True, stderr=subprocess.PIPE);\
err = proc.communicate()[1]; print err; sys.exit(bool(err))"
[testenv:docscoverage]
sitepackages = {[docsbase]sitepackages}