Previous: PyFlakes, Up: Python BuildSteps


4.11.5.3 PyLint

Similarly, the buildbot.steps.python.PyLint step will run pylint and analyze the results.

You must supply the command line to be used. There is no default.

     from buildbot.steps.python import PyLint
     
     ...
     f.addStep(PyLint(command=["pylint", "src"]))