diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-25 16:46:26 +0800 |
---|---|---|
committer | yunlong ying <ying.yunlong@zte.com.cn> | 2017-09-25 09:56:09 +0000 |
commit | 398afe4032b9e5d5ba1888568c0931c70ad24c1f (patch) | |
tree | 79d1ac558972239cec443ff60414a1315d392630 /tox.ini | |
parent | 102dbeb9da04e4a954288cf8792b5fa131f4f5b0 (diff) |
Add vfc-nfvo-catalog tox pep8 check setting
Change-Id: I14f26a401e9f4b0ce9ad6e1222cd05d9e7c323e0
Issue-ID: VFC-448
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -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 |