[ansible][fedora] Update package name
[barometer.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist =
4     docs,
5     docs-linkcheck
6 skipsdist = true
7
8 [testenv:docs]
9 basepython = python3
10 deps = -rdocs/requirements.txt
11 commands =
12     sphinx-build -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
13     echo "Generated docs available in {toxinidir}/docs/_build/html"
14 whitelist_externals = echo
15
16 [testenv:docs-linkcheck]
17 basepython = python3
18 deps = -rdocs/requirements.txt
19 commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck
20
21 [testenv:docs-releasenotes]
22 basepython=python3
23 deps = -rdocs/requirements.txt
24 commands = reno --rel-notes-dir docs/release/release-notes/ report
25
26 [testenv:docs-create-note]
27 basepython = python3
28 deps = -rdocs/requirements.txt
29 commands = reno --rel-notes-dir docs/release/release-notes/ new {posargs}