Prevent KeyError during main args parsing
[functest.git] / tox.ini
1 [tox]
2 envlist = docs,pep8,pylint,py35,py27,perm
3
4 [testenv]
5 usedevelop = True
6 deps =
7   -r{toxinidir}/requirements.txt
8   -r{toxinidir}/test-requirements.txt
9 install_command = pip install \
10   -c{toxinidir}/upper-constraints.txt \
11   -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata \
12   {opts} {packages}
13 commands = nosetests --with-xunit \
14   --with-coverage \
15   --cover-tests \
16   --cover-package=functest \
17   --cover-xml \
18   --cover-html \
19   functest/tests/unit
20
21 [testenv:docs]
22 basepython = python2.7
23 commands = sphinx-build -W -b html api/ api/_build
24
25 [testenv:pep8]
26 basepython = python2.7
27 commands = flake8
28
29 [testenv:pylint]
30 basepython = python2.7
31 whitelist_externals = bash
32 modules =
33   functest.api
34   functest.core
35   functest.opnfv_tests.sdn.odl
36   functest.tests.unit.core
37   functest.tests.unit.odl
38   functest.tests.unit.utils.test_decorators
39   functest.utils.decorators
40 commands =
41   bash -c "\
42     pylint -f parseable --disable=locally-disabled functest | \
43     tee pylint.out | sed -ne '/Raw metrics/,//p'"
44   pylint --disable=locally-disabled --reports=n {[testenv:pylint]modules}
45
46 [testenv:py35]
47 dirs =
48   functest/tests/unit/core
49   functest/tests/unit/odl
50   functest/tests/unit/utils/test_decorators.py
51 commands = nosetests {[testenv:py35]dirs}
52
53 [testenv:perm]
54 basepython = python2.7
55 whitelist_externals = bash
56 path=. -not -path './.tox/*' -not -path './.git/*' -not -path './docs/com/pres/reveal.js/*'
57 commands =
58   bash -c "\
59     find {[testenv:perm]path} \( -type f -not -perm 644 -o -type d -not -perm 755 \) \
60     -exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
61   bash -c "\
62     find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"