Changeset 246656 in webkit


Ignore:
Timestamp:
Jun 20, 2019 3:25:12 PM (5 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-app] Status bubble should not turn orange when any build step is skipped
https://bugs.webkit.org/show_bug.cgi?id=199079

Reviewed by Jonathan Bedard.

  • BuildSlaveSupport/ews-app/ews/views/statusbubble.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-app/ews/views/statusbubble.py

    r245487 r246656  
    156156    def _does_build_contains_any_failed_step(self, build):
    157157        for step in build.step_set.all():
    158             if step.result and step.result != Buildbot.SUCCESS and step.result != Buildbot.WARNINGS:
     158            if step.result and step.result != Buildbot.SUCCESS and step.result != Buildbot.WARNINGS and step.result != Buildbot.SKIPPED:
    159159                return True
    160160        return False
  • trunk/Tools/ChangeLog

    r246654 r246656  
     12019-06-20  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-app] Status bubble should not turn orange when any build step is skipped
     4        https://bugs.webkit.org/show_bug.cgi?id=199079
     5
     6        Reviewed by Jonathan Bedard.
     7
     8        * BuildSlaveSupport/ews-app/ews/views/statusbubble.py:
     9
    1102019-06-20  Alex Christensen  <achristensen@webkit.org>
    211
Note: See TracChangeset for help on using the changeset viewer.