Adapting pylint runner to the new message format

Parseable output format and --include-ids parameter are deprecated
and ignored in the pylint version used on the gate.
These functions are replaced by the --msg-template parameter.

This patch changes the runner to use the new parameter so that the
job can run properly on the gate

Closes-Bug: #1394606
Change-Id: Ia3e531923caa3f4e9a0dd03e0a4f5ef1a6d3dafb
This commit is contained in:
Balazs Gibizer 2014-11-20 16:13:34 +01:00
parent 4c69673c20
commit 16faba1ad8
1 changed files with 4 additions and 3 deletions

View File

@ -124,9 +124,10 @@ class ErrorKeys(object):
def run_pylint():
buff = StringIO()
reporter = text.ParseableTextReporter(output=buff)
args = ["--include-ids=y", "-E", "ceilometer"]
lint.Run(args, reporter=reporter, exit=False)
args = ["--msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}",
"-E",
"ceilometer"]
lint.Run(args, exit=False)
val = buff.getvalue()
buff.close()
return val