Modify commit error
[vfc/nfvo/catalog.git] / tox.ini
diff --git a/tox.ini b/tox.ini
index 8cd4faf..f9b7824 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,12 +1,12 @@
 [tox]
-envlist = py27,pep8
+envlist = py36,pep8,cov
 skipsdist = true
 
 [tox:jenkins]
 downloadcache = ~/cache/pip
 
 [flake8]
-ignore = E501,E231,E128,W291,W293,E711,E303,E701,E225,E303,E302,E126,E203,F841,E123,E125,W391,E262,E265,E301,E241,E305,E402
+ignore = E501,E722
 exclude =  ./venv-tox,./.tox
 
 [testenv]
@@ -17,6 +17,10 @@ commands = coverage run --branch manage.py test catalog
 deps = flake8
 commands = flake8
 
-[testenv:py27]
+[testenv:py36]
 commands =
-  {[testenv]commands}
\ No newline at end of file
+  {[testenv]commands}
+
+[testenv:cov]
+deps = coverage==4.2
+commands = coverage xml --omit="*test*,*__init__.py,*site-packages*"