diff options
author | guillaume.lambert <guillaume.lambert@orange.com> | 2021-04-24 10:37:53 +0200 |
---|---|---|
committer | guillaume.lambert <guillaume.lambert@orange.com> | 2021-04-24 10:40:32 +0200 |
commit | 91df0d8a90c3630b1a2f7b42e1b93b5a262f043d (patch) | |
tree | 530f75e54622136b1d44b83c8577d0ff589c349e | |
parent | ddf0d20733ea11ae6beb6dad5c6998a94ddaaf7d (diff) |
[DOC] Decrease Sphinx tox profiles logs verbosity
to ease gate failures analysis as proposed by Eric.
Issue-ID: DOC-710
Signed-off-by: guillaume.lambert <guillaume.lambert@orange.com>
Change-Id: Ic59da02bc65ca9d5b584c48429215760fe4130da
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,11 +17,11 @@ commands = [testenv:docs] deps = -rdocs/requirements-docs.txt commands = - sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + sphinx-build -q -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html [testenv:docs-linkcheck] deps = -rdocs/requirements-docs.txt -commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck +commands = sphinx-build -q -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:spelling] #basepython = python3 |