Jessica Wagantall | 6b71b53 | 2020-02-06 14:54:03 -0800 | [diff] [blame] | 1 | [tox] |
| 2 | minversion = 1.6 |
thmsdt | ee1f074 | 2023-07-04 09:28:47 +0200 | [diff] [blame] | 3 | envlist = docs,docs-linkcheck,docs-spellcheck |
Jessica Wagantall | 6b71b53 | 2020-02-06 14:54:03 -0800 | [diff] [blame] | 4 | skipsdist = true |
| 5 | |
| 6 | [testenv:docs] |
Cédric Ollivier | 171ce63 | 2022-08-31 22:24:36 +0200 | [diff] [blame] | 7 | basepython = python3.8 |
thmsdt | 2d69747 | 2021-11-30 11:41:31 +0100 | [diff] [blame] | 8 | deps = |
| 9 | -r{toxinidir}/requirements-docs.txt |
thmsdt | 3099808 | 2024-02-27 11:22:55 +0100 | [diff] [blame] | 10 | -chttps://releases.openstack.org/constraints/upper/yoga |
thmsdt | ee1f074 | 2023-07-04 09:28:47 +0200 | [diff] [blame] | 11 | -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master |
Jessica Wagantall | 6b71b53 | 2020-02-06 14:54:03 -0800 | [diff] [blame] | 12 | commands = |
thmsdt | ee1f074 | 2023-07-04 09:28:47 +0200 | [diff] [blame] | 13 | sphinx-build -W -q -b html -n -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/html |
Jessica Wagantall | 6b71b53 | 2020-02-06 14:54:03 -0800 | [diff] [blame] | 14 | |
| 15 | [testenv:docs-linkcheck] |
Cédric Ollivier | 171ce63 | 2022-08-31 22:24:36 +0200 | [diff] [blame] | 16 | basepython = python3.8 |
thmsdt | 2d69747 | 2021-11-30 11:41:31 +0100 | [diff] [blame] | 17 | deps = |
| 18 | -r{toxinidir}/requirements-docs.txt |
thmsdt | 3099808 | 2024-02-27 11:22:55 +0100 | [diff] [blame] | 19 | -chttps://releases.openstack.org/constraints/upper/yoga |
thmsdt | ee1f074 | 2023-07-04 09:28:47 +0200 | [diff] [blame] | 20 | -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master |
| 21 | commands = |
| 22 | sphinx-build -W -q -b linkcheck -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/linkcheck |
marineMD | 22f97cb | 2022-11-16 16:38:32 +0100 | [diff] [blame] | 23 | |
| 24 | [testenv:docs-spellcheck] |
| 25 | basepython = python3.8 |
| 26 | deps = |
| 27 | -r{toxinidir}/requirements-docs.txt |
thmsdt | 3099808 | 2024-02-27 11:22:55 +0100 | [diff] [blame] | 28 | -chttps://releases.openstack.org/constraints/upper/yoga |
marineMD | 22f97cb | 2022-11-16 16:38:32 +0100 | [diff] [blame] | 29 | -chttps://git.onap.org/doc/plain/etc/upper-constraints.onap.txt?h=master |
| 30 | commands = |
thmsdt | ee1f074 | 2023-07-04 09:28:47 +0200 | [diff] [blame] | 31 | sphinx-build -q -b spelling -d {envtmpdir}/doctrees {toxinidir} {toxinidir}/_build/spellcheck |