diff options
author | Fu Jinhua <fu.jinhua@zte.com.cn> | 2017-09-28 09:18:19 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-09-28 09:18:19 +0000 |
commit | e6c2ea8d3b9e074441748cf1cbbbbe0aa042846d (patch) | |
tree | 8160dfc00fff4b4a51e2fe6b3f606a477309a755 | |
parent | ca915d443bd81202e1f45423254547f258533aea (diff) | |
parent | 9640af8a512ccf5274a687cf45ac302ba3e5175b (diff) |
Merge "Add pep8 check for vfc-nfvo-lcm"
-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 +exclude = ./venv-tox,./.tox + [testenv] deps = -r{toxinidir}/requirements.txt commands = coverage run --branch manage.py test lcm + +[testenv:pep8] +deps = flake8 +commands = flake8 + +[testenv:py27] +commands = + {[testenv]commands} |