Skip to content

Commit

Permalink
Mark buildstep status as done when skipped.
Browse files Browse the repository at this point in the history
Also add a 'skipped' marker to the status text. Fixes #966.
  • Loading branch information
Amber Yust committed Oct 4, 2010
1 parent 77ae316 commit 4ef7ca3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions master/buildbot/process/buildstep.py
Expand Up @@ -769,6 +769,7 @@ def _startStep_2(self, res):
skip = self.start()

if skip == SKIPPED:
self.step_status.setText(self.describe(True) + ['skipped'])
# this return value from self.start is a shortcut
# to finishing the step immediately
reactor.callLater(0, self.finished, SKIPPED)
Expand Down

0 comments on commit 4ef7ca3

Please sign in to comment.