Run sphinx checks with two jobs.

This commit is contained in:
Omer Katz 2019-01-09 16:47:52 +02:00
parent 293a1a0df3
commit 05878d6790
1 changed files with 2 additions and 2 deletions

View File

@ -37,11 +37,11 @@ basepython =
[testenv:apicheck]
commands = pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
sphinx-build -j2 -b apicheck -d {envtmpdir}/doctrees docs docs/_build/apicheck
[testenv:linkcheck]
commands = pip install -U -r{toxinidir}/requirements/dev.txt
sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
sphinx-build -j2 -W -b linkcheck -d {envtmpdir}/doctrees docs docs/_build/linkcheck
[testenv:flake8]
commands =