diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = pep8,py27 +envlist = pep8,pylint,py27 [testenv] deps = @@ -18,3 +18,11 @@ basepython = python2.7 deps = {[testenv]deps} commands = flake8 + +[testenv:pylint] +basepython=python2.7 +deps= + {[testenv]deps} +whitelist_externals = bash +commands=bash -c \ + "pylint --persistent=n functest | sed -ne '/Raw metrics/,//p'" |