blob: 23a1e263659963d26d5297b3b238204fb7c17732 [file] [log] [blame]
deepanshukf98ee762020-12-14 21:59:04 +05301# Copyright (c) 2020 AT&T Intellectual Property.
deepanshuk297dbd62020-11-03 13:09:19 +05302#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14# ==================================================================================
15[tox]
16envlist = code,flake8,docs,docs-linkcheck
17minversion = 2.0
18
19[testenv:code]
deepanshukf98ee762020-12-14 21:59:04 +053020basepython = python3.7
deepanshuk297dbd62020-11-03 13:09:19 +053021deps=
22 pytest
23 coverage
24 pytest-cov
deepanshukf98ee762020-12-14 21:59:04 +053025
deepanshuk297dbd62020-11-03 13:09:19 +053026setenv =
27 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
deepanshukf98ee762020-12-14 21:59:04 +053028 PYTHONPATH = {toxinidir}:ad:/usr/lib/python3.7/site-packages/
deepanshuk297dbd62020-11-03 13:09:19 +053029 RMR_SEED_RT = tests/fixtures/test_local.rt
30 RMR_ASYNC_CONN = 0
31 USE_FAKE_SDL = 1
32
33commands =
34 pytest -v --cov ad --cov-report xml --cov-report term-missing --cov-report html --cov-fail-under=70
35 coverage xml -i
36
37[testenv:flake8]
deepanshukf98ee762020-12-14 21:59:04 +053038basepython = python3.7
deepanshuk297dbd62020-11-03 13:09:19 +053039skip_install = true
40deps = flake8
deepanshukf98ee762020-12-14 21:59:04 +053041setenv =
42 PYTHONPATH = {toxinidir}:ad:/usr/lib/python3.7/site-packages/
deepanshuk297dbd62020-11-03 13:09:19 +053043commands = flake8 setup.py ad tests
44
45[flake8]
46extend-ignore = E501,E741,E731
47
48[testenv:clm]
49# use pip to gather dependencies with versions for CLM analysis
50whitelist_externals = sh
51commands = sh -c 'pip freeze > requirements.txt'
52
53# doc jobs
54[testenv:docs]
55whitelist_externals = echo
56skipsdist = true
deepanshukf98ee762020-12-14 21:59:04 +053057basepython = python3.7
deepanshuk297dbd62020-11-03 13:09:19 +053058deps =
59 sphinx
60 sphinx-rtd-theme
61 sphinxcontrib-httpdomain
62 recommonmark
63 lfdocs-conf
64commands =
65 sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
66 echo "Generated docs available in {toxinidir}/docs/_build/html"
67
68[testenv:docs-linkcheck]
69skipsdist = true
deepanshukf98ee762020-12-14 21:59:04 +053070basepython = python3.7
deepanshuk297dbd62020-11-03 13:09:19 +053071deps = sphinx
72 sphinx-rtd-theme
73 sphinxcontrib-httpdomain
74 recommonmark
75 lfdocs-conf
76commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck