diff options
author | Cedric Ollivier <cedric.ollivier@orange.com> | 2017-05-30 07:11:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-05-30 07:11:22 +0000 |
commit | ec4af7ba1c4fc88f6f0cc6ee98f27e27b197522e (patch) | |
tree | c484b491255409a276b9bf9603a1add057af369b | |
parent | 234a4164d7d145de6d681387362484ed3e6c94b4 (diff) | |
parent | 40f255a466c3a11f3b7572724c24ab5d870755ce (diff) |
Merge "Export the Pylint results via pylint.out"
-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 = |