Leverage alpine rather than golang
[functest-kubernetes.git] / tox.ini
1 [tox]
2 envlist = pep8,pylint,yamllint,ansiblelint,bashate,py27,py36,bandit
3
4 [testenv]
5 usedevelop = True
6 deps =
7   -chttps://git.opnfv.org/functest/plain/upper-constraints.txt?h=stable/hunter
8   -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/rocky/upper-constraints.txt}
9   -r{toxinidir}/requirements.txt
10   -r{toxinidir}/test-requirements.txt
11 install_command = pip install {opts} {packages}
12 commands = nosetests --with-xunit \
13   --with-coverage \
14   --cover-tests \
15   --cover-package=functest_kubernetes \
16   --cover-xml \
17   --cover-html \
18   functest_kubernetes
19
20 [testenv:pep8]
21 basepython = python2.7
22 commands = flake8
23
24 [testenv:pylint]
25 basepython = python2.7
26 commands = pylint \
27     --ignore-imports=y --min-similarity-lines=10 \
28     --disable=locally-disabled,super-on-old-class --reports=n functest_kubernetes
29
30 [testenv:yamllint]
31 basepython = python2.7
32 files =
33   .travis.yml
34   docker
35   functest_kubernetes/rally/all-in-one.yaml
36 commands =
37   yamllint {[testenv:yamllint]files}
38
39 [testenv:ansiblelint]
40 basepython = python2.7
41 commands = ansible-lint -x303 ansible/site.yml
42
43 [testenv:bandit]
44 basepython = python2.7
45 commands = bandit -r functest_kubernetes -x tests -n 5 -ll
46
47 [testenv:py36]
48 commands = nosetests functest_kubernetes
49
50 [testenv:bashate]
51 basepython = python2.7
52 files =
53   build.sh
54 commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}
55
56 [testenv:perm]
57 basepython = python2.7
58 whitelist_externals = bash
59 path=. -not -path './.tox/*' -not -path './.git/*' -not -path './doc/pres/reveal.js/*'
60 commands =
61   bash -c "\
62     find {[testenv:perm]path} \( -type f -not -perm 644 -o -type d -not -perm 755 \) \
63     -exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
64   bash -c "\
65     find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"