From: ying.yunlong Date: Mon, 25 Sep 2017 08:46:26 +0000 (+0800) Subject: Add vfc-nfvo-catalog tox pep8 check setting X-Git-Tag: v1.0.0~14 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F14981%2F5;p=vfc%2Fnfvo%2Fcatalog.git Add vfc-nfvo-catalog tox pep8 check setting Change-Id: I14f26a401e9f4b0ce9ad6e1222cd05d9e7c323e0 Issue-ID: VFC-448 Signed-off-by: ying.yunlong --- diff --git a/tox.ini b/tox.ini index cd6a1182..8cd4faf2 100644 --- 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