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
NOTE: At some point pylint changed the interface. The above examples need to replace exit=False with do_exit=False. (@mad7777, @amit-tripathi)
exit=False
do_exit=False
(Learned as per https://github.com/carsongee/pytest-pylint/issues/80)