Chromium Code Reviews| Index: appengine/findit/waterfall/detect_first_failure_pipeline.py |
| diff --git a/appengine/findit/waterfall/detect_first_failure_pipeline.py b/appengine/findit/waterfall/detect_first_failure_pipeline.py |
| index a6dd42e025edc92e68057099ee4417dc7493aa35..258bcce62b0ca6853fd27a9d7374c23356302c6d 100644 |
| --- a/appengine/findit/waterfall/detect_first_failure_pipeline.py |
| +++ b/appengine/findit/waterfall/detect_first_failure_pipeline.py |
| @@ -181,7 +181,8 @@ class DetectFirstFailurePipeline(BasePipeline): |
| for test_name in iteration.keys(): |
| is_reliable_failure = True |
| - if any(test['status'] == 'SUCCESS' for test in iteration[test_name]): |
| + if (any(test['status'] in ['SUCCESS', 'SKIPPED', 'UNKNOWN'] |
|
lijeffrey
2016/06/01 19:27:03
Maybe move this list to a constant called TEST_STA
chanli
2016/06/02 22:40:09
Done.
|
| + for test in iteration[test_name])): |
| # Ignore the test if any of the attempts were 'SUCCESS'. |
| is_reliable_failure = False |