Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to invoke the pylint checker, limited to the Error signalling part, as part of my unit testing. so I checked the pylint executable script, got to the pylint.lint.Run helper class and there I got lost in a quite long __init__ function, ending with a call to sys.exit().

anybody ever tried and managed to do so?

the dream-plan would be this:

if __name__ == '__main__':
  import pylint.lint
  pylint.lint.something(__file__, justerrors=True)
  # now continue with unit testing

any hints? other than "copy the __init__ method and skip the sys.exit()", I mean?

I don't need the tests to be run by pylint, it might as well be pyflakes or other software: feel free to suggest alternatives. thanks!

share|improve this question

4 Answers

up vote 6 down vote accepted

Take a look at the pylint/epylint.py which contains two different ways to start pylint programatically.

You can also simply call :

from pylint.lint import Run
Run(['--errors-only', 'myfile.py']) 

for instance.

share|improve this answer
combined with previous answer. and with slight modification: pylint.lint.Run(['--errors-only', filename]) – mariotomo Jan 14 '10 at 10:23
is there a way to parse multiple files when invoking pylint programatically? – Gobliins Sep 1 '11 at 9:06
@gobliins: yes, simply append other file names to the list given as Run argument. – sthenault Nov 10 '11 at 8:44
@matioyomo, response fixed, thanks for noticing this – sthenault Nov 10 '11 at 8:48
surely you meant from pylint.lint import Run :) – Daniel Kitachewsky Jul 30 '12 at 17:13

I got the same problem recently. syt is right, pylint.epylint got several methods in there. However they all call a subprocess in which python is launched again. In my case, this was getting quite slow.

Building from mcarans answer, and finding that there is a flag exit, I did the following

class WritableObject(object):
    "dummy output stream for pylint"
    def __init__(self):
        self.content = []
    def write(self, st):
        "dummy write"
        self.content.append(st)
    def read(self):
        "dummy read"
        return self.content
def run_pylint(filename):
    "run pylint on the given file"
    from pylint import lint
    from pylint.reporters.text import TextReporter
    ARGS = ["-r","n", "--rcfile=rcpylint"]  # put your own here
    pylint_output = WritableObject()
    lint.Run([filename]+ARGS, reporter=TextReporter(pylint_output), exit=False)
    for l in pylint_output.read():
        do what ever you want with l...

which is about 3 times faster in my case. With this I have been going through a whole project, using full output to check each source file, point errors, and rank all files from their note.

share|improve this answer

I'm glad I came across this. I used some of the answers here and some initiative to come up with:

    # a simple class with a write method
    class WritableObject:
        def __init__(self):
            self.content = []
        def write(self, string):
            self.content.append(string)
    pylint_output = WritableObject()
    original_exit = sys.exit
    def no_exit(arg):
        pass
    sys.exit = no_exit
    pylint = lint.Run(args, reporter=ParseableTextReporter(pylint_output))
    sys.exit = original_exit

Args in the above is a list of strings eg. ["-r", "n", "myfile.py"]

share|improve this answer
I put a solution above, but I have since found that calling Pylint programatically this way is bad because Pylint uses imports which are cached. So if you edited the file you were linting, the changes would not be seen. If you are only running Pylint programmatically once against a single script, then this is probably ok. – mcarans Jan 31 '11 at 19:24
I know lambda is not considered pythonic, but you can substitute sys.exit more compactly this way: original_exit, sys.exit = sys.exit, lambda x:None – mariotomo Feb 4 '11 at 7:58

I feel really dirty suggesting this, but

import pylint.lint
import sys

original_exit = sys.exit

def no_exit():
    pass

try:
    sys.exit = no_exit
    pylint.lint.something(__file__, justerrors=True)
finally:
    sys.exit = original_exit
share|improve this answer
:D ... I will try this one, but it doesn't really solve the issue: I have my ~/.pylintrc which is used when I invoke pylint from the command line, but when I run it programmatically, I only want errors (and possibly warnings). but thanks, it can serve as a start. – mariotomo Jan 8 '10 at 16:01
Sorry, I'm not that pylint-aware, and focussed on your sys.exit problem. – Blair Conrad Jan 8 '10 at 19:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.