[Buildbot-commits] [Buildbot] #1043: Skipped step status is merged incorrectly into overall build
Buildbot
buildbot-devel at lists.sourceforge.net
Mon Nov 8 07:57:11 UTC 2010
#1043: Skipped step status is merged incorrectly into overall build
-------------------+--------------------------------------------------------
Reporter: Dylan | Owner:
Type: defect | Status: new
Priority: major | Milestone: undecided
Version: 0.8.2 | Keywords:
-------------------+--------------------------------------------------------
Say I have builder b1 which triggers builder b2 and waits for it to
finish.
b2 has a step which is skipped. This causes b1 to fail when it should
succeed.
Another symptom of this problem is that builds that should be green on the
top of the waterfall are white because they obviously have an overall
status of skipped.
A quick fix that worked for me is as follows. I'm sure this will make it
obvious to someone else what needs to be fixed.
In buildbot/process/base.py inside the stepDone method I added this
conditional (and imported SKIPPED)
if result != SKIPPED:
self.result = worst_status(self.result, possible_overall_result)
Thanks
--
Ticket URL: <http://buildbot.net/trac/ticket/1043>
Buildbot <http://buildbot.net/>
Buildbot: build/test automation
More information about the Commits
mailing list