summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authordjkonro <konraddjimeli@gmail.com>2018-01-14 16:19:05 +0100
committerdjkonro <konraddjimeli@gmail.com>2018-01-24 10:06:08 +0100
commit2a36556281b2d95f6d24da9bd02baa611724faf1 (patch)
treeea123cf60c25368635ef88dd042469f4cd62c77a /tox.ini
parentad86868d3740c6ec4a7da0a7a6126fc0385d6d1b (diff)
Add initial python class for kubernetes testing
JIRA: FUNCTEST-904 Co-Authored-By: Cédric Ollivier <cedric.ollivier@orange.com> Change-Id: I9007e4e6f58118d1b09774d0acbb2a315437e09a Signed-off-by: djkonro <konraddjimeli@gmail.com> Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini27
1 files changed, 27 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 00000000..34f8a756
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,27 @@
+[tox]
+envlist = pep8,pylint,yamllint,py27,py35
+
+[testenv]
+usedevelop = True
+deps =
+ -r{toxinidir}/test-requirements.txt
+install_command = pip install {opts} {packages}
+
+[testenv:pep8]
+basepython = python2.7
+commands = flake8
+
+[testenv:pylint]
+basepython = python2.7
+whitelist_externals = bash
+modules =
+ functest_kubernetes
+commands =
+ pylint --disable=locally-disabled --reports=n {[testenv:pylint]modules}
+
+[testenv:yamllint]
+basepython = python2.7
+files =
+ docker
+commands =
+ yamllint {[testenv:yamllint]files}