diff options
author | mrichomme <morgan.richomme@orange.com> | 2019-11-29 15:14:23 +0100 |
---|---|---|
committer | mrichomme <morgan.richomme@orange.com> | 2019-11-29 15:14:23 +0100 |
commit | 4de8b081b1d461e5435fea66705789d141d93ad4 (patch) | |
tree | fa285570ebbf784b8fca77e4a578c25cce27f00d | |
parent | eb7de50defa4087cf7d027b533ba41691d397f47 (diff) |
remove parallelisation to save memory
Issue-ID: DOC-419
Signed-off-by: mrichomme <morgan.richomme@orange.com>
Change-Id: Iebe3e4af80da72491e45970c7c42a8631e9bb98d
-rw-r--r-- | tox.ini | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,7 +7,7 @@ skipsdist = true basepython = python3 deps = -r{toxinidir}/etc/requirements.txt commands = - sphinx-build -j 4 -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html echo "Generated docs available in {toxinidir}/docs/_build/html" whitelist_externals = echo @@ -19,7 +19,7 @@ basepython = python3 deps = -r{toxinidir}/etc/requirements.txt commands = git submodule update --depth 100 --init - sphinx-build -j 4 -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html echo "Generated docs available in {toxinidir}/docs/_build/html" whitelist_externals = echo @@ -28,7 +28,7 @@ whitelist_externals = [testenv:linkcheck] basepython = python3 deps = -r{toxinidir}/etc/requirements.txt -commands = sphinx-build -j 4 -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck +commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:spellcheck] basepython = python3 |