Removing deprecated functions from readthedocs
[ric-plt/appmgr.git] / xapp_orchestrater / dev / tox.ini
1 [tox]
2 minversion = 2.0
3 envlist =
4     docs,
5     docs-linkcheck,
6
7 skipsdist = true
8
9 [testenv:docs]
10 basepython = python3
11 deps = 
12     sphinx
13     sphinx-rtd-theme
14     sphinxcontrib-contentui
15     sphinxcontrib-httpdomain
16     recommonmark
17     lfdocs-conf
18     urllib3~=1.26.15
19     
20 commands =
21     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
22
23     echo "Generated docs available in {toxinidir}/docs/_build/html"
24
25 allowlist_externals = echo
26
27 [testenv:docs-linkcheck]
28 basepython = python3
29 deps = sphinx
30        sphinx-rtd-theme
31        sphinxcontrib-contentui
32        sphinxcontrib-httpdomain
33        recommonmark
34        lfdocs-conf
35        urllib3~=1.26.15
36 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck