X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=lcm%2Ftox.ini;h=6f61451f5f2b945ad8fd39d33f614427cf13fd52;hb=5464ccb452d84a89ed70e056439c73cd7da0e31d;hp=4022b75d8fa1cc8b6298eda976184b125d0478ec;hpb=fb961baab613a906011f3a0d705c8fca604a5f60;p=vfc%2Fgvnfm%2Fvnflcm.git diff --git a/lcm/tox.ini b/lcm/tox.ini index 4022b75d..6f61451f 100644 --- a/lcm/tox.ini +++ b/lcm/tox.ini @@ -1,11 +1,27 @@ [tox] -envlist = py27 +envlist = py36,pep8,cov skipsdist = true [tox:jenkins] downloadcache = ~/cache/pip +[flake8] +ignore = E501,E722,W504 +exclude = ./venv-tox,./.tox +max-complexity = 27 + [testenv] deps = -r{toxinidir}/requirements.txt commands = coverage run --branch manage.py test lcm - coverage html --omit="*test*,*__init__.py" -d htmlcov + +[testenv:pep8] +deps = flake8 +commands = flake8 + +[testenv:py36] +commands = + {[testenv]commands} + +[testenv:cov] +deps = coverage==4.2 +commands = coverage xml --omit="*test*,*__init__.py,*site-packages*"