diff options
author | halil.cakal <halil.cakal@est.tech> | 2022-11-14 15:46:34 +0100 |
---|---|---|
committer | halil.cakal <halil.cakal@est.tech> | 2022-11-18 09:33:04 +0000 |
commit | c72b0875d2e8f4e9ce7868b846a466aa62467175 (patch) | |
tree | 06011b1593bc9fb5d77942527815fb7392aa3dad /docs/tox.ini | |
parent | 47970acb0720d20059fe40084e987be31107449e (diff) |
Fix DOC config files
Fix breaking API documentation generationi
and replace ROBOT_VENV with ROBOT3_VENV
Issue-ID: DOC-798
Signed-off-by: marineMD <marine.de.dorlodot@intl.att.com>
Change-Id: Ic9b887a8f6c96ed332cde9997efb3471e7e2e35f
Signed-off-by: halil.cakal <halil.cakal@est.tech>
Diffstat (limited to 'docs/tox.ini')
-rw-r--r-- | docs/tox.ini | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/tox.ini b/docs/tox.ini index 49bbe010..c27543a8 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -23,3 +23,15 @@ basepython = python3.8 commands = echo "Link Checking not enforced" #commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./ {toxinidir}/_build/linkcheck whitelist_externals = echo + +[testenv:docs-spellcheck] +basepython = python3.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=kohn +commands = + sphinx-build -W -q -b spelling -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/spellcheck + + + |