diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-25 18:33:49 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-09-25 18:33:49 +0800 |
commit | ab39ec3cb1b62195ee9916c5baf0ea583abfacfa (patch) | |
tree | 6deac2893e4154f99824748bd495c3ca0a182131 /tox.ini | |
parent | 398afe4032b9e5d5ba1888568c0931c70ad24c1f (diff) |
Add vfc-nfvo-catalog tox coverge check
Change-Id: I7b2c0df470cd3e1dbd69292e104990b860bc7830
Issue-ID: VFC-449
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,12 +1,12 @@ [tox] -envlist = py27,pep8 +envlist = py27,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,E231,E128,W291,W293,E711,E303,E701,E225,E303,E302,E126,E203,F841,E123,E125,W391,E262,E265,E301,E241,E305 exclude = ./venv-tox,./.tox [testenv] @@ -19,4 +19,7 @@ commands = flake8 [testenv:py27] commands = - {[testenv]commands}
\ No newline at end of file + {[testenv]commands} + +[testenv:cov] +commands = coverage html --omit="*test_*,*__init__.py,*site-packages*" -d htmlcov |