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
pylint
Take a look at the pylint/epylint.py which contains two different ways to start pylint programatically.
pylint/epylint.py
You can also simply call :
from pylint.lint import Run Run(['--errors-only', 'myfile.py'])
for instance.