Release vnflcm version 1.4.3
[vfc/gvnfm/vnflcm.git] / lcm / tox.ini
index 5a72b4d..2953472 100644 (file)
@@ -1,12 +1,13 @@
 [tox]
-envlist = py27,pep8
+envlist = py36,pep8,cov
 skipsdist = true
 
 [tox:jenkins]
 downloadcache = ~/cache/pip
 
 [flake8]
-ignore = E501
+ignore = E501,E722,W504
+exclude = ./venv-tox,./.tox,./venv
 max-complexity = 27
 
 [testenv]
@@ -17,6 +18,10 @@ commands = coverage run --branch manage.py test lcm
 deps = flake8
 commands = flake8
 
-[testenv:py27]
+[testenv:py36]
 commands =
   {[testenv]commands}
+
+[testenv:cov]
+deps = coverage==4.2
+commands = coverage xml --omit="*test*,*__init__.py,*site-packages*"