blob: 98c7be146ff7b779338a8a5eadcdd0a5b2bc0461 [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
Tommy Carpenterf9cd5cc2020-03-09 13:46:37 -040034 pytest --cov ricxappframe --cov-report xml --cov-report term-missing --cov-report html --cov-fail-under=70
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
45
Lott, Christopher (cl778h)ebf321d2020-04-16 16:15:49 -040046[testenv:clm]
47# use pip to gather dependencies with versions for CLM analysis
48whitelist_externals = sh
Lott, Christopher (cl778h)ca170d32020-05-12 15:05:59 -040049commands = sh -c 'pip freeze > requirements.txt'
Lott, Christopher (cl778h)ebf321d2020-04-16 16:15:49 -040050
Tommy Carpenter53786ca2020-02-28 09:17:46 -050051# doc jobs
52[testenv:docs]
53whitelist_externals = echo
54skipsdist = true
Tommy Carpenter5b582d62020-03-17 17:41:42 -040055basepython = python3.8
Tommy Carpenterfbb59282020-04-08 07:04:51 -040056setenv =
57 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
Lott, Christopher (cl778h)e87ea192020-06-16 16:12:26 -040058deps = sphinx
59 sphinx-rtd-theme
60 sphinxcontrib-httpdomain
61 recommonmark
62 lfdocs-conf
63 numpydoc
64 inotify_simple
65 mdclogpy
66 msgpack
67 ricsdl
Tommy Carpenter53786ca2020-02-28 09:17:46 -050068commands =
69 sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
70 echo "Generated docs available in {toxinidir}/docs/_build/html"
Tommy Carpenter21f659c2020-02-26 14:12:54 -050071
Tommy Carpenter53786ca2020-02-28 09:17:46 -050072[testenv:docs-linkcheck]
73skipsdist = true
Tommy Carpenter5b582d62020-03-17 17:41:42 -040074basepython = python3.8
Tommy Carpenterfbb59282020-04-08 07:04:51 -040075setenv =
76 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
Tommy Carpenter53786ca2020-02-28 09:17:46 -050077deps = sphinx
78 sphinx-rtd-theme
79 sphinxcontrib-httpdomain
80 recommonmark
81 lfdocs-conf
Tommy Carpenterfbb59282020-04-08 07:04:51 -040082 numpydoc
Lott, Christopher (cl778h)e87ea192020-06-16 16:12:26 -040083 inotify_simple
84 mdclogpy
85 msgpack
86 ricsdl
Tommy Carpenter53786ca2020-02-28 09:17:46 -050087commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck