Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 714 Bytes

subunit_shell_command.rst

File metadata and controls

22 lines (13 loc) · 714 Bytes

SubunitShellCommand

This buildstep is similar to :bbShellCommand, except that it runs the log content through a subunit filter to extract test and failure counts.

from buildbot.plugins import steps

f.addStep(steps.SubunitShellCommand(command="make test"))

This runs make test and filters it through subunit. The 'tests' and 'test failed' progress metrics will now accumulate test data from the test run.

If failureOnNoTests is True, this step will fail if no test is run. By default failureOnNoTests is False.