From 691906d08d5a0e953c93ea73d6e6db058e1e7cad Mon Sep 17 00:00:00 2001 From: Andreas Geissler Date: Mon, 25 Sep 2023 10:57:56 +0200 Subject: [PATCH] [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 --- docs/tox.ini | 6 ++++++ tox.ini | 14 +++++++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/docs/tox.ini b/docs/tox.ini index 8bec1b5ba0..94bc3ff4b7 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -9,7 +9,9 @@ deps = -r{toxinidir}/requirements-docs.txt -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master +allowlist_externals = sudo commands = + sudo apt install graphviz sphinx-build -W -q -b html -n -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/html [testenv:docs-linkcheck] @@ -18,7 +20,9 @@ deps = -r{toxinidir}/requirements-docs.txt -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master +allowlist_externals = sudo commands = + sudo apt install graphviz sphinx-build -W -q -b linkcheck -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/linkcheck [testenv:docs-spellcheck] @@ -27,6 +31,8 @@ deps = -r{toxinidir}/requirements-docs.txt -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master +allowlist_externals = sudo commands = + sudo apt install graphviz sphinx-build -b spelling -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/spellcheck diff --git a/tox.ini b/tox.ini index ca5c71b98e..4269f66b09 100644 --- a/tox.ini +++ b/tox.ini @@ -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 -- 2.16.6