Add vfc-nfvo-catalog tox pep8 check setting 81/14981/5
authorying.yunlong <ying.yunlong@zte.com.cn>
Mon, 25 Sep 2017 08:46:26 +0000 (16:46 +0800)
committeryunlong ying <ying.yunlong@zte.com.cn>
Mon, 25 Sep 2017 09:56:09 +0000 (09:56 +0000)
Change-Id: I14f26a401e9f4b0ce9ad6e1222cd05d9e7c323e0
Issue-ID: VFC-448
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
tox.ini

diff --git a/tox.ini b/tox.ini
index cd6a118..8cd4faf 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,22 @@
 [tox]
-envlist = py27
+envlist = py27,pep8
 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
+exclude =  ./venv-tox,./.tox
+
 [testenv]
 deps = -r{toxinidir}/requirements.txt
 commands = coverage run --branch manage.py test catalog
+
+[testenv:pep8]
+deps = flake8
+commands = flake8
+
+[testenv:py27]
+commands =
+  {[testenv]commands}
\ No newline at end of file