diff options
author | valentin boucher <valentin.boucher@orange.com> | 2017-05-22 13:11:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-22 13:11:37 +0000 |
commit | 7c902200886f72f8a5868d1e40c9b34f9160d6ce (patch) | |
tree | 6e02b9b32068e0d64afe90a3cc06e7050206b092 /tox.ini | |
parent | c1a6979eb1c51083d357afa5caee12539f94b777 (diff) | |
parent | 2bbf1492079d7f30aa3e6dfb88a1e9037412c230 (diff) |
Merge "Check style when running tox"
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py27 +envlist = pep8,py27 [testenv] deps = @@ -12,3 +12,9 @@ commands = nosetests --with-xunit \ --cover-xml \ --cover-html \ functest/tests/unit + +[testenv:pep8] +basepython = python2.7 +deps = + {[testenv]deps} +commands = flake8 |