Enable py36 in gates
[functest-kubernetes.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 5a1dc71..9cbb88e 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,11 @@
 [tox]
-envlist = pep8,pylint,yamllint,py27,py35
+envlist = pep8,pylint,yamllint,ansiblelint,bashate,py27,py36,bandit
 
 [testenv]
 usedevelop = True
 deps =
   -chttps://git.opnfv.org/functest/plain/upper-constraints.txt
+  -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/rocky/upper-constraints.txt}
   -r{toxinidir}/requirements.txt
   -r{toxinidir}/test-requirements.txt
 install_command = pip install {opts} {packages}
@@ -22,11 +23,7 @@ commands = flake8
 
 [testenv:pylint]
 basepython = python2.7
-whitelist_externals = bash
-modules =
-  functest_kubernetes
-commands =
-  pylint --disable=locally-disabled --reports=n {[testenv:pylint]modules}
+commands = pylint --disable=locally-disabled --reports=n functest_kubernetes
 
 [testenv:yamllint]
 basepython = python2.7
@@ -35,3 +32,20 @@ files =
   docker
 commands =
   yamllint {[testenv:yamllint]files}
+
+[testenv:ansiblelint]
+basepython = python2.7
+commands = ansible-lint ansible/site.yml
+
+[testenv:bandit]
+basepython = python2.7
+commands = bandit -r functest_kubernetes -x tests -n 5 -ll
+
+[testenv:py36]
+commands = nosetests functest_kubernetes
+
+[testenv:bashate]
+basepython = python2.7
+files =
+  build.sh
+commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}