From: Cédric Ollivier Date: Sun, 21 May 2017 09:50:56 +0000 (+0200) Subject: Analyse code when running tox X-Git-Tag: 0.2~610^2~4 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=59f183c9573e4ae59beaadc94e4cc52660029d37;p=functest-xtesting.git Analyse code when running tox It filters all messages to ease reading the report. Change-Id: Iab55bc71cb6026edde29fb9f084a07b2dedf564f Signed-off-by: Cédric Ollivier --- diff --git a/test-requirements.txt b/test-requirements.txt index b284591b..1874bb1f 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -9,3 +9,4 @@ coverage==4.1 mock==1.3.0 nose==1.3.7 flake8>=2.5.4,<2.6.0 # MIT +pylint==1.4.5 # GPLv2 diff --git a/tox.ini b/tox.ini index 88d720c8..db4f8920 100644 --- a/tox.ini +++ b/tox.ini @@ -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'"