Update version number in container-tag for F Maintenance Release
[sim/a1-interface.git] / near-rt-ric-simulator / test / EXT_SRV / tox.ini
1 # ==================================================================================
2 #       Copyright (c) 2022 Nordix
3 #
4 #   Licensed under the Apache License, Version 2.0 (the "License");
5 #   you may not use this file except in compliance with the License.
6 #   You may obtain a copy of the License at
7 #
8 #          http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #   Unless required by applicable law or agreed to in writing, software
11 #   distributed under the License is distributed on an "AS IS" BASIS,
12 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #   See the License for the specific language governing permissions and
14 #   limitations under the License.
15 # ==================================================================================
16
17 [tox]
18 envlist = docs,docs-linkcheck
19 minversion = 2.0
20 skipsdist = true
21
22 # doc jobs
23 [testenv:docs]
24 whitelist_externals = echo
25 # Version 3.8 is required, otherwise AttributeError will arise
26 basepython = python3.8
27 deps =
28     sphinx
29     sphinx-rtd-theme
30     sphinxcontrib-httpdomain
31     # Version 0.6.0 is required, otherwise BlockGrammer error will arise
32     sphinxcontrib-openapi==0.6.0
33     recommonmark
34     lfdocs-conf
35 commands =
36     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
37     echo "Generated docs available in {toxinidir}/docs/_build/html"
38
39 [testenv:docs-linkcheck]
40 skipsdist = true
41 basepython = python3.8
42 deps = sphinx
43        sphinx-rtd-theme
44        sphinxcontrib-httpdomain
45         # Version 0.6.0 is required, otherwise BlockGrammer error will arise
46         sphinxcontrib-openapi==0.6.0
47        recommonmark
48        lfdocs-conf
49 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck