From 89da4d94d0bbe3eceb3669a6d3cf95b86c0bead0 Mon Sep 17 00:00:00 2001 From: Ruben Anton Date: Tue, 23 Apr 2013 10:17:30 +0200 Subject: [PATCH] renderables attribute extended in ShellCommand class --- master/buildbot/steps/shell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/master/buildbot/steps/shell.py b/master/buildbot/steps/shell.py index b54c19b624d..0423d8c2a20 100644 --- a/master/buildbot/steps/shell.py +++ b/master/buildbot/steps/shell.py @@ -68,7 +68,8 @@ class ShellCommand(buildstep.LoggingBuildStep): name = "shell" renderables = buildstep.LoggingBuildStep.renderables + [ 'slaveEnvironment', 'remote_kwargs', 'command', - 'description', 'descriptionDone', 'descriptionSuffix'] + 'description', 'descriptionDone', 'descriptionSuffix', + 'haltOnFailure', 'flunkOnFailure'] description = None # set this to a list of short strings to override descriptionDone = None # alternate description when the step is complete