Filter packaging in upper-constraints.txt
[functest-kubernetes.git] / tox.ini
1 [tox]
2 envlist = pep8,pylint,yamllint,bashate,py310,bandit,perm
3
4 [testenv]
5 pip_version = pip==20.2.4
6 usedevelop = True
7 deps =
8   -chttps://git.opnfv.org/functest/plain/upper-constraints.txt
9   -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/master/upper-constraints.txt}
10   -r{toxinidir}/requirements.txt
11   -r{toxinidir}/test-requirements.txt
12 install_command = pip install {opts} {packages}
13 commands =
14   pytest \
15     --junit-xml=junit.xml \
16     --html=report.html --self-contained-html \
17     --cov=xtesting --cov-reset --cov-report html \
18     functest_kubernetes
19
20 [testenv:pep8]
21 basepython = python3.10
22 commands = flake8
23
24 [testenv:pylint]
25 basepython = python3.10
26 commands = pylint \
27     --ignore-imports=y --min-similarity-lines=10 \
28     --disable=locally-disabled,wrong-import-order --reports=n functest_kubernetes
29
30 [testenv:yamllint]
31 basepython = python3.10
32 files =
33   .travis.yml
34   docker
35 commands =
36   yamllint {[testenv:yamllint]files}
37
38 [testenv:bandit]
39 basepython = python3.10
40 commands = bandit -r functest_kubernetes -x tests -n 5 -ll
41
42 [testenv:bashate]
43 basepython = python3.10
44 files =
45   build.sh
46   functest_kubernetes/ci/download_images.sh
47 commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}
48
49 [testenv:perm]
50 basepython = python3.10
51 whitelist_externals = bash
52 path=. -not -path './.tox/*' -not -path './.git/*' -not -path './doc/pres/reveal.js/*'
53 commands =
54   bash -c "\
55     find {[testenv:perm]path} \( -type f -not -perm 644 -o -type d -not -perm 755 \) \
56     -exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
57   bash -c "\
58     find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"
59
60 [testenv:pre-commit]
61 basepython = python3.10
62 commands =
63     pre-commit run --all-files --show-diff-on-failure