aboutsummaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-10-11 19:49:27 +0800
committerAlex Gaynor <alex.gaynor@gmail.com>2017-10-11 07:49:27 -0400
commita3facfae09c881b8a1953ffd7b192debc58bb5a0 (patch)
treed5ba316a29a48be9ad5ce1a55def7885dfbad522 /tox.ini
parent1b43b51599e4a3b39662b069af0140bf24ac3a43 (diff)
downloadcryptography-a3facfae09c881b8a1953ffd7b192debc58bb5a0.tar.gz
cryptography-a3facfae09c881b8a1953ffd7b192debc58bb5a0.tar.bz2
cryptography-a3facfae09c881b8a1953ffd7b192debc58bb5a0.zip
parallelize docs work and always give full traceback on exception (#3957)
In local testing this didn't seem to gain much, but it also doesn't hurt so what the hell.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 4 insertions, 4 deletions
diff --git a/tox.ini b/tox.ini
index 51d81d2c..b8def744 100644
--- a/tox.ini
+++ b/tox.ini
@@ -40,10 +40,10 @@ extras =
docstest
basepython = python2.7
commands =
- sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
- sphinx-build -W -b latex -d {envtmpdir}/doctrees docs docs/_build/latex
- sphinx-build -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
- sphinx-build -W -b spelling docs docs/_build/html
+ sphinx-build -j4 -T -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
+ sphinx-build -j4 -T -W -b latex -d {envtmpdir}/doctrees docs docs/_build/latex
+ sphinx-build -j4 -T -W -b doctest -d {envtmpdir}/doctrees docs docs/_build/html
+ sphinx-build -j4 -T -W -b spelling docs docs/_build/html
doc8 --allow-long-titles README.rst CHANGELOG.rst docs/ --ignore-path docs/_build/
python setup.py check --restructuredtext --strict