DCAE london release notes
[dcaegen2.git] / docs / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = docs,docs-linkcheck,docs-spellcheck
4 skipsdist = true
5
6 testenv:docs]
7 basepython = python3.8
8 deps =
9     -r{toxinidir}/requirements-docs.txt
10     -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt
11     -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master
12 commands = 
13     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./ {toxinidir}/_build/html
14
15 whitelist_externals =
16     echo
17     git
18     sh
19  
20 [testenv:docs-linkcheck]
21 basepython = python3.8
22 deps =
23     -r{toxinidir}/requirements-docs.txt
24     -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt
25     -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master
26 #Link Check not enforced
27 commands = sphinx-build -W -q -b linkcheck -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/linkcheck
28  
29 [testenv:docs-spellcheck]
30 basepython = python3.8
31 deps =
32     -r{toxinidir}/requirements-docs.txt
33     -chttps://raw.githubusercontent.com/openstack/requirements/stable/yoga/upper-constraints.txt
34     -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master
35 #Spell Check not enforced
36 commands = sphinx-build -W -q -b spelling -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/spellcheck