diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2023-09-25 10:57:56 +0200 |
---|---|---|
committer | Andreas Geissler <andreas-geissler@telekom.de> | 2023-09-25 14:41:40 +0200 |
commit | 691906d08d5a0e953c93ea73d6e6db058e1e7cad (patch) | |
tree | 7ed8c1c942a1bacafe9799c6e3fb2276c9e5fcca /tox.ini | |
parent | c03c938fb9d9ffac940797574a11f95b95f262fc (diff) |
[DOC] Add missing graphviz module
Tox fails due to missing graphviz module.
Added the installation in tox.ini files
(Ticket: IT-26010)
Issue-ID: OOM-2342
Change-Id: Ica9f750c6644386d2dc3fac6a786463929c320d6
Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -26,8 +26,10 @@ deps = -r{toxinidir}/requirements.txt -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt +allowlist_externals = sudo commands = - sphinx-build -q -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html + sudo apt install graphviz + sphinx-build -q -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html [testenv:docs-linkcheck] basepython = python3.8 @@ -35,17 +37,23 @@ deps = -r{toxinidir}/requirements.txt -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt -commands = sphinx-build -q -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck +allowlist_externals = sudo +commands = + sudo apt install graphviz + sphinx-build -q -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck [testenv:spelling] basepython = python3.8 -allowlist_externals = wget +allowlist_externals = + wget + sudo deps = -r{toxinidir}/requirements.txt -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt changedir={toxinidir}/docs commands = + sudo apt install graphviz wget -nv https://git.onap.org/doc/plain/docs/spelling_wordlist.txt -O spelling_wordlist.txt sphinx-build -b spelling -d {envtmpdir}/doctrees . _build/spelling |