blob: 97f76d6152e29b6b634edad230ab4aaf92739872 [file] [log] [blame]
deepanshuk588acf12021-01-06 16:10:44 +05301# Copyright (c) 2020 HCL Technologies Limited.
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]
deepanshuk588acf12021-01-06 16:10:44 +053020basepython = python3.7
deepanshuk297dbd62020-11-03 13:09:19 +053021deps=
22 pytest
23 coverage
24 pytest-cov
deepanshuk588acf12021-01-06 16:10:44 +053025
deepanshuk297dbd62020-11-03 13:09:19 +053026setenv =
27 LD_LIBRARY_PATH = /usr/local/lib/:/usr/local/lib64
deepanshuk588acf12021-01-06 16:10:44 +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 =
deepanshuk91624d72021-07-06 13:07:04 +053034 pytest -v --cov ad --cov-report xml --cov-report term-missing --cov-report html --cov-fail-under=50
deepanshuk297dbd62020-11-03 13:09:19 +053035 coverage xml -i
36
37[testenv:flake8]
deepanshuk588acf12021-01-06 16:10:44 +053038basepython = python3.7
deepanshuk297dbd62020-11-03 13:09:19 +053039skip_install = true
40deps = flake8
deepanshuk588acf12021-01-06 16:10:44 +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
deepanshuk588acf12021-01-06 16:10:44 +053057basepython = python3.7
deepanshuk063d7f52021-03-03 17:20:51 +053058
deepanshuk297dbd62020-11-03 13:09:19 +053059deps =
60 sphinx
61 sphinx-rtd-theme
62 sphinxcontrib-httpdomain
63 recommonmark
64 lfdocs-conf
65commands =
66 sphinx-build -W -b html -n -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/html
67 echo "Generated docs available in {toxinidir}/docs/_build/html"
68
69[testenv:docs-linkcheck]
70skipsdist = true
deepanshuk588acf12021-01-06 16:10:44 +053071basepython = python3.7
deepanshuk297dbd62020-11-03 13:09:19 +053072deps = sphinx
73 sphinx-rtd-theme
74 sphinxcontrib-httpdomain
75 recommonmark
76 lfdocs-conf
77commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ./docs/ {toxinidir}/docs/_build/linkcheck