Return a list of short strings to describe this step, for the status
display. This uses the first few words of the shell command. You can
replace this by setting .description in your subclass, or by overriding
this method to describe the step better.
- Parameters:
done - whether the command is complete or not, to improve the way the
command is described. done=False is used while the
command is still running, so a single imperfect-tense verb is
appropriate ('compiling', 'testing', ...) done=True
is used when the command has finished, and the default getText()
method adds some text, so a simple noun is appropriate
('compile', 'tests' ...)
- Overrides:
process.buildstep.BuildStep.describe
|