Alarm statements are commented in main.py for ric-app/qp-driver repo
[ric-app/qp-driver.git] / tox.ini
1 # ==================================================================================
2 #       Copyright (c) 2020 AT&T Intellectual Property.
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 [tox]
17 envlist = code,flake8,docs,docs-linkcheck
18 minversion = 2.0
19
20 [testenv:code]
21 basepython = python3.8
22 deps=
23     pytest
24     coverage
25     pytest-cov
26 setenv =
27     LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
28     RMR_SEED_RT = tests/fixtures/test_local.rt
29     RMR_ASYNC_CONN = 0
30     USE_FAKE_SDL = 1
31     CONFIG_FILE = /tmp/config.json
32
33 # add -s after pytest to stream the logs as they come in, rather than saving for the end
34 commands =
35     pytest -v --cov qpdriver --cov-report xml --cov-report term-missing --cov-report html --cov-fail-under=70
36     coverage xml -i
37
38 [testenv:flake8]
39 basepython = python3.8
40 skip_install = true
41 deps = flake8
42 commands = flake8 setup.py qpdriver tests
43
44 [flake8]
45 extend-ignore = E501,E741,E731
46
47 [testenv:clm]
48 # use pip to gather dependencies with versions for CLM analysis
49 whitelist_externals = sh
50 commands = sh -c 'pip freeze > requirements.txt'
51
52 # doc jobs
53 [testenv:docs]
54 whitelist_externals = echo
55 skipsdist = true
56 basepython = python3.8
57 deps =
58     sphinx
59     sphinx-rtd-theme
60     sphinxcontrib-httpdomain
61     recommonmark
62     lfdocs-conf
63 commands =
64     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
65     echo "Generated docs available in {toxinidir}/docs/_build/html"
66
67 [testenv:docs-linkcheck]
68 skipsdist = true
69 basepython = python3.8
70 deps = sphinx
71        sphinx-rtd-theme
72        sphinxcontrib-httpdomain
73        recommonmark
74        lfdocs-conf
75 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck