Add initial python class for kubernetes testing
[functest-kubernetes.git] / tox.ini
1 [tox]
2 envlist = pep8,pylint,yamllint,py27,py35
3
4 [testenv]
5 usedevelop = True
6 deps =
7   -r{toxinidir}/test-requirements.txt
8 install_command = pip install {opts} {packages}
9
10 [testenv:pep8]
11 basepython = python2.7
12 commands = flake8
13
14 [testenv:pylint]
15 basepython = python2.7
16 whitelist_externals = bash
17 modules =
18   functest_kubernetes
19 commands =
20   pylint --disable=locally-disabled --reports=n {[testenv:pylint]modules}
21
22 [testenv:yamllint]
23 basepython = python2.7
24 files =
25   docker
26 commands =
27   yamllint {[testenv:yamllint]files}