Chore: Add gerrit maven verify GHA workflow
[sdnc/oam.git] / docs / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = docs,
4 skipsdist = true
5
6 [testenv:docs]
7 basepython = python3.8
8 deps =
9     -r{toxinidir}/requirements-docs.txt
10     -chttps://releases.openstack.org/constraints/upper/yoga
11     -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt
12 commands =
13     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html
14     echo "Generated docs available in {toxinidir}/_build/html"
15 allowlist_externals =
16     echo
17     git
18     sh
19
20 [testenv:docs-linkcheck]
21 basepython = python3.8
22 #deps = -r{toxinidir}/requirements-docs.txt
23 commands = echo "Link Checking not enforced"
24 #commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./ {toxinidir}/_build/linkcheck
25 allowlist_externals = echo
26
27 [testenv:docs-spellcheck]
28 basepython = python3.8
29 deps =
30     -r{toxinidir}/requirements-docs.txt
31     -chttps://releases.openstack.org/constraints/upper/yoga
32     -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master
33 commands =
34     sphinx-build -W -q -b spelling -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/spellcheck
35