Add release notes for Acumos xAPP for Amber release
[ric-app/ml.git] / tox.ini
1 # This work is licensed under a Creative Commons Attribution 4.0 International License.
2 # SPDX-License-Identifier: CC-BY-4.0
3 # Copyright (C) 2019 AT&T Intellectual Property
4
5 # documentation only
6 [tox]
7 minversion = 2.0
8 envlist =
9     docs,
10     docs-linkcheck,
11 skipsdist = true
12
13 [testenv:docs]
14 basepython = python3
15 deps =
16     sphinx
17     sphinx-rtd-theme
18     sphinxcontrib-httpdomain
19     recommonmark
20     lfdocs-conf
21 commands =
22     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
23     echo "Generated docs available in {toxinidir}/docs/_build/html"
24 whitelist_externals = echo
25
26 [testenv:docs-linkcheck]
27 basepython = python3
28 deps = sphinx
29        sphinx-rtd-theme
30        sphinxcontrib-httpdomain
31        recommonmark
32        lfdocs-conf
33 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck