diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | tox.ini | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 341cf2811..f6e406203 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ nosetests.xml functest.egg-info *venv .tox +*.out @@ -29,8 +29,9 @@ basepython = python2.7 deps = {[testenv]deps} whitelist_externals = bash -commands = bash -c \ - "pylint --persistent=n functest | sed -ne '/Raw metrics/,//p'" +commands = bash -c "\ + pylint -f parseable --disable=locally-disabled functest | \ + tee pylint.out | sed -ne '/Raw metrics/,//p'" [testenv:py35] dirs = |