blob: 314baf0287befe0e6277f27e72cd2ed3f7fb1d8c [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]
czichy13030cc2023-06-08 15:08:52 +030022basepython = python3.10
Tommy Carpenter21f659c2020-02-26 14:12:54 -050023deps=
24 pytest
25 coverage
26 pytest-cov
ehietala12486342022-06-15 12:21:41 +030027 six
Tommy Carpenter21f659c2020-02-26 14:12:54 -050028setenv =
29 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -040030 RMR_SEED_RT = tests/fixtures/test_local.rt
31 RMR_ASYNC_CONN = 0
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]
czichy13030cc2023-06-08 15:08:52 +030038basepython = python3.10
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
ehietala12486342022-06-15 12:21:41 +030045exclude = ricxappframe/entities,ricxappframe/subsclient
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
czichy13030cc2023-06-08 15:08:52 +030056basepython = python3
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
czichy13030cc2023-06-08 15:08:52 +030071 urllib3~=1.26.15
72
73allowlist_externals = echo
74
Tommy Carpenter53786ca2020-02-28 09:17:46 -050075commands =
76 sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
77 echo "Generated docs available in {toxinidir}/docs/_build/html"
Tommy Carpenter21f659c2020-02-26 14:12:54 -050078
Tommy Carpenter53786ca2020-02-28 09:17:46 -050079[testenv:docs-linkcheck]
80skipsdist = true
czichy13030cc2023-06-08 15:08:52 +030081basepython = python3
Tommy Carpenterfbb59282020-04-08 07:04:51 -040082setenv =
83 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
Tommy Carpenter53786ca2020-02-28 09:17:46 -050084deps = sphinx
85 sphinx-rtd-theme
86 sphinxcontrib-httpdomain
87 recommonmark
88 lfdocs-conf
Tommy Carpenterfbb59282020-04-08 07:04:51 -040089 numpydoc
Lott, Christopher (cl778h)e87ea192020-06-16 16:12:26 -040090 inotify_simple
91 mdclogpy
92 msgpack
93 ricsdl
czichy13030cc2023-06-08 15:08:52 +030094 urllib3~=1.26.15
Tommy Carpenter53786ca2020-02-28 09:17:46 -050095commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck