Merge "Protect vs None when calling regex"
[functest-xtesting.git] / tox.ini
1 [tox]
2 envlist = docs,pep8,pylint,yamllint,bashate,py35,py27,perm,cover
3 skipsdist = True
4
5 [testenv]
6 usedevelop = True
7 deps =
8   -c{toxinidir}/upper-constraints.txt
9   -chttps://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/queens
10   -r{toxinidir}/requirements.txt
11   -r{toxinidir}/test-requirements.txt
12 install_command = pip install {opts} {packages}
13 commands = nosetests --with-xunit \
14   --with-coverage \
15   --cover-tests \
16   --cover-package=xtesting \
17   --cover-xml \
18   --cover-html \
19   xtesting/tests/unit
20
21 [testenv:docs]
22 basepython = python2.7
23 commands =
24   doc8 README.rst api --ignore-path api/build
25   sphinx-build -W -b html api/ api/build
26
27 [testenv:pep8]
28 basepython = python2.7
29 commands = flake8
30
31 [testenv:pylint]
32 basepython = python2.7
33 whitelist_externals = bash
34 commands =
35   pylint --disable=locally-disabled --ignore-imports=y --reports=n xtesting
36
37 [testenv:yamllint]
38 basepython = python2.7
39 files =
40   xtesting/ci
41 commands =
42   yamllint -s {[testenv:yamllint]files}
43
44 [testenv:py35]
45 commands = nosetests xtesting/tests/unit
46
47 [testenv:bashate]
48 basepython = python2.7
49 files =
50   build.sh
51 commands = bashate {[testenv:bashate]files}
52
53 [testenv:cover]
54 basepython = python2.7
55 dirs =
56   xtesting/tests/unit/ci
57   xtesting/tests/unit/core
58   xtesting/tests/unit/energy
59   xtesting/tests/unit/utils/test_decorators.py
60 commands = nosetests --with-coverage --cover-tests \
61   --cover-package xtesting.core \
62   --cover-package xtesting.energy \
63   --cover-package xtesting.tests.unit \
64   --cover-package xtesting.utils.decorators \
65   --cover-min-percentage 100 {[testenv:cover]dirs}
66
67 [testenv:perm]
68 basepython = python2.7
69 whitelist_externals = bash
70 path=. -not -path './.tox/*' -not -path './.git/*' -not -path './doc/reveal.js/*'
71 commands =
72   bash -c "\
73     find {[testenv:perm]path} \( -type f -not -perm 644 -o -type d -not -perm 755 \) \
74     -exec ls -l \{\} + | grep '.' && exit 1 || exit 0"
75   bash -c "\
76     find {[testenv:perm]path} -exec file \{\} + | grep CRLF && exit 1 || exit 0"