Caution
Buildbot no longer supports Python 2.7 on the Buildbot master.
Caution
This page documents the latest, unreleased version of Buildbot. For documentation for released versions, see http://docs.buildbot.net/current/.
2.5.11.37. PyLintΒΆ
Similarly, the PyLint
step will run pylint and analyze the results.
You must supply the command line to be used. There is no default.
from buildbot.plugins import steps
f.addStep(steps.PyLint(command=["pylint", "src"]))
This step takes the following arguments:
store_results
(Optional, defaults to
True
) IfTrue
, the test results will be stored in the test database.