blob: 0180e50e28e2048caa380c1dc7c486daba33a7fd [file] [log] [blame]
Tommy Carpenter21f659c2020-02-26 14:12:54 -05001# ==================================================================================
2# Copyright (c) 2020 Nokia
3# Copyright (c) 2020 AT&T Intellectual Property.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16# ==================================================================================
17[tox]
Tommy Carpenter53786ca2020-02-28 09:17:46 -050018envlist = code,flake8,docs,docs-linkcheck
Tommy Carpenter21f659c2020-02-26 14:12:54 -050019minversion = 2.0
20
Tommy Carpenter53786ca2020-02-28 09:17:46 -050021[testenv:code]
Tommy Carpenter5b582d62020-03-17 17:41:42 -040022basepython = python3.8
Tommy Carpenter21f659c2020-02-26 14:12:54 -050023deps=
24 pytest
25 coverage
26 pytest-cov
27setenv =
28 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -040029 RMR_SEED_RT = tests/fixtures/test_local.rt
30 RMR_ASYNC_CONN = 0
31
Tommy Carpenter21f659c2020-02-26 14:12:54 -050032commands =
Lott, Christopher (cl778h)e87ea192020-06-16 16:12:26 -040033 # add -s flag after pytest to show logs immediately instead of delaying
Timo Tietavainen61c65082021-12-05 16:13:01 +020034 pytest --cov ricxappframe --cov-report xml --cov-report term-missing --cov-report html --cov-fail-under=70 --junitxml=/tmp/tests.xml
Tommy Carpenter21f659c2020-02-26 14:12:54 -050035 coverage xml -i
36
37[testenv:flake8]
Tommy Carpenter5b582d62020-03-17 17:41:42 -040038basepython = python3.8
Tommy Carpenter21f659c2020-02-26 14:12:54 -050039skip_install = true
40deps = flake8
41commands = flake8 setup.py ricxappframe tests
42
43[flake8]
44extend-ignore = E501,E741,E731
yc999.jang750eb5b2021-06-10 19:04:18 +090045exclude = ricxappframe/entities
Tommy Carpenter21f659c2020-02-26 14:12:54 -050046
Lott, Christopher (cl778h)ebf321d2020-04-16 16:15:49 -040047[testenv:clm]
48# use pip to gather dependencies with versions for CLM analysis
49whitelist_externals = sh
Lott, Christopher (cl778h)ca170d32020-05-12 15:05:59 -040050commands = sh -c 'pip freeze > requirements.txt'
Lott, Christopher (cl778h)ebf321d2020-04-16 16:15:49 -040051
Tommy Carpenter53786ca2020-02-28 09:17:46 -050052# doc jobs
53[testenv:docs]
54whitelist_externals = echo
55skipsdist = true
Tommy Carpenter5b582d62020-03-17 17:41:42 -040056basepython = python3.8
Tommy Carpenterfbb59282020-04-08 07:04:51 -040057setenv =
58 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
Lott, Christopher (cl778h)e87ea192020-06-16 16:12:26 -040059deps = sphinx
60 sphinx-rtd-theme
61 sphinxcontrib-httpdomain
62 recommonmark
63 lfdocs-conf
64 numpydoc
65 inotify_simple
66 mdclogpy
67 msgpack
68 ricsdl
yc999.jang750eb5b2021-06-10 19:04:18 +090069 protobuf
subhash kumar singhe310e432021-08-03 00:23:32 +053070 inotify
Tommy Carpenter53786ca2020-02-28 09:17:46 -050071commands =
72 sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
73 echo "Generated docs available in {toxinidir}/docs/_build/html"
Tommy Carpenter21f659c2020-02-26 14:12:54 -050074
Tommy Carpenter53786ca2020-02-28 09:17:46 -050075[testenv:docs-linkcheck]
76skipsdist = true
Tommy Carpenter5b582d62020-03-17 17:41:42 -040077basepython = python3.8
Tommy Carpenterfbb59282020-04-08 07:04:51 -040078setenv =
79 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
Tommy Carpenter53786ca2020-02-28 09:17:46 -050080deps = sphinx
81 sphinx-rtd-theme
82 sphinxcontrib-httpdomain
83 recommonmark
84 lfdocs-conf
Tommy Carpenterfbb59282020-04-08 07:04:51 -040085 numpydoc
Lott, Christopher (cl778h)e87ea192020-06-16 16:12:26 -040086 inotify_simple
87 mdclogpy
88 msgpack
89 ricsdl
Tommy Carpenter53786ca2020-02-28 09:17:46 -050090commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck