diff options
author | yxpoke <yangxu5@huawei.com> | 2023-04-27 18:12:24 +0800 |
---|---|---|
committer | yxpoke <yangxu5@huawei.com> | 2023-04-27 19:11:12 +0800 |
commit | 23dd15c7d2086b6edf06469c7d585772b6718351 (patch) | |
tree | 1a4226b06b27b895746db9e72c46054f224dbf4b /docs/tox.ini | |
parent | 426f57c2ccb3d1eb25f66ab842a193a93a0b2bf4 (diff) |
Complete preliminary documentation for M4
Issue-ID: MODELING-668
Signed-off-by: yxpoke <yangxu5@huawei.com>
Change-Id: I786c2f5ceec0c89497b8b66a43f1fbcfde64ffcd
Diffstat (limited to 'docs/tox.ini')
-rw-r--r-- | docs/tox.ini | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/docs/tox.ini b/docs/tox.ini index ce98799..8fc31ba 100644 --- a/docs/tox.ini +++ b/docs/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = docs, +envlist = docs,docs-linkcheck,docs-spellcheck skipsdist = true [testenv:docs] @@ -8,21 +8,25 @@ 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 + -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master commands = - sphinx-build -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html - echo "Generated docs available in {toxinidir}/_build/html" -whitelist_externals = - echo + sphinx-build -W -q -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html +allowlist_externals = git sh [testenv:docs-linkcheck] -basepython = python3 +basepython = python3.8 #deps = -r{toxinidir}/requirements-docs.txt -commands = echo "Link Checking not enforced" +#commands = echo "Link Checking not enforced" #commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./ {toxinidir}/_build/linkcheck -whitelist_externals = echo +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 +commands = + sphinx-build -W -q -b linkcheck -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/linkcheck +#allowlist_externals = echo [testenv:docs-spellcheck] basepython = python3.8 |