diff options
author | 2022-11-15 10:16:20 +0100 | |
---|---|---|
committer | 2022-11-21 16:04:27 +0100 | |
commit | e525351ffccf2e1f410e494f15c740cc98f37c03 (patch) | |
tree | 22efca0a91bead536fab8174c56e5e5e5541e700 /docs/tox.ini | |
parent | 0ae086d29357800287754a19abcbc4c72b117b89 (diff) |
Fix DOC config files
Issue-ID: DOC-798
Signed-off-by: marineMD <marine.de.dorlodot@intl.att.com>
Change-Id: I9f4b16424f67a6dc2af2fe56ede4afa8d9ea470c
(cherry picked from commit 3452f6e0997c287f2523c83fbf6acb12da46ad9d [formerly 8c23ca75dd88a53bb9d60c51c2ff392825f8adf6])
Former-commit-id: 2073ccd1896bc85a52972609a84c9d1a22733f35
Diffstat (limited to 'docs/tox.ini')
-rw-r--r-- | docs/tox.ini | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/tox.ini b/docs/tox.ini index 49bbe010..ba9b64ed 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -23,3 +23,13 @@ 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 + |