Fix last Pylint error in Functest
[functest.git] / tox.ini
1 [tox]
2 envlist = docs,pep8,pylint,yamllint,py35,py27,perm,cover
3
4 [testenv]
5 usedevelop = True
6 deps =
7   -c{toxinidir}/upper-constraints.txt
8   -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/pike
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 \
16   --cover-xml \
17   --cover-html \
18   functest/tests/unit
19
20 [testenv:docs]
21 basepython = python2.7
22 commands = sphinx-build -W -b html api/ api/_build
23
24 [testenv:pep8]
25 basepython = python2.7
26 commands = flake8
27
28 [testenv:pylint]
29 basepython = python2.7
30 whitelist_externals = bash
31 modules =
32   functest.api
33   functest.ci
34   functest.cli
35   functest.core
36   functest.energy
37   functest.opnfv_tests.sdn.odl
38   functest.opnfv_tests.vnf.router
39   functest.tests.unit.ci
40   functest.tests.unit.cli
41   functest.tests.unit.core
42   functest.tests.unit.energy
43   functest.tests.unit.odl
44   functest.tests.unit.vnf.router
45   functest.tests.unit.utils.test_decorators
46   functest.utils.decorators
47 commands =
48   bash -c "\
49     pylint -f parseable --disable=locally-disabled functest | \
50     tee pylint.out | sed -ne '/Raw metrics/,//p'"
51   pylint --disable=locally-disabled --reports=n --errors-only functest
52   pylint --disable=locally-disabled --reports=n {[testenv:pylint]modules}
53
54 [testenv:yamllint]
55 basepython = python2.7
56 files =
57   docker
58   functest/api
59   functest/ci
60   functest/opnfv_tests/vnf
61 commands =
62   yamllint -s {[testenv:yamllint]files}
63
64 [testenv:py35]
65 dirs =
66   functest/tests/unit/ci
67   functest/tests/unit/cli
68   functest/tests/unit/core
69   functest/tests/unit/energy
70   functest/tests/unit/odl
71   functest/tests/unit/utils
72 commands = nosetests {[testenv:py35]dirs}
73
74 [testenv:cover]
75 basepython = python2.7
76 dirs =
77   functest/tests/unit/ci
78   functest/tests/unit/core
79   functest/tests/unit/energy
80   functest/tests/unit/odl
81   functest/tests/unit/utils/test_decorators.py
82 commands = nosetests --with-coverage --cover-tests \
83   --cover-package functest.ci.check_deployment \
84   --cover-package functest.ci.tier_builder \
85   --cover-package functest.ci.tier_handler \
86   --cover-package functest.core \
87   --cover-package functest.energy \
88   --cover-package functest.opnfv_tests.sdn.odl \
89   --cover-package functest.tests.unit \
90   --cover-package functest.utils.decorators \
91   --cover-min-percentage 100 {[testenv:cover]dirs}
92
93 [testenv:perm]
94 basepython = python2.7
95 whitelist_externals = bash
96 path=. -not -path './.tox/*' -not -path './.git/*' -not -path './docs/com/pres/reveal.js/*'
97 commands =
98   bash -c "\
99     find {[testenv:perm]path} \( -type f -not -perm 644 -o -type d -not -perm 755 \) \
100     -exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
101   bash -c "\
102     find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"