| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import logging | 5 import logging |
| 6 | 6 |
| 7 from common.pipeline_wrapper import BasePipeline | 7 from common.pipeline_wrapper import BasePipeline |
| 8 from common.waterfall import failure_type | 8 from common.waterfall import failure_type |
| 9 from waterfall import try_job_util | 9 from waterfall import try_job_util |
| 10 from waterfall.identify_try_job_culprit_pipeline import ( | 10 from waterfall.identify_try_job_culprit_pipeline import ( |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 task_result = yield ProcessSwarmingTaskResultPipeline( | 113 task_result = yield ProcessSwarmingTaskResultPipeline( |
| 114 master_name, builder_name, build_number, step_name) | 114 master_name, builder_name, build_number, step_name) |
| 115 reliable_tests.append(task_result) | 115 reliable_tests.append(task_result) |
| 116 | 116 |
| 117 try_job_id = yield ScheduleTestTryJobPipeline( | 117 try_job_id = yield ScheduleTestTryJobPipeline( |
| 118 master_name, builder_name, build_number, good_revision, bad_revision, | 118 master_name, builder_name, build_number, good_revision, bad_revision, |
| 119 try_job_type, suspected_revisions, *reliable_tests) | 119 try_job_type, suspected_revisions, *reliable_tests) |
| 120 | 120 |
| 121 try_job_result = yield MonitorTryJobPipeline( | 121 try_job_result = yield MonitorTryJobPipeline( |
| 122 try_job_key.urlsafe(), try_job_type, try_job_id) | 122 try_job_key.urlsafe(), try_job_type, try_job_id) |
| 123 |
| 123 yield IdentifyTryJobCulpritPipeline( | 124 yield IdentifyTryJobCulpritPipeline( |
| 124 master_name, builder_name, build_number, blame_list, try_job_type, | 125 master_name, builder_name, build_number, blame_list, try_job_type, |
| 125 try_job_id, try_job_result) | 126 try_job_id, try_job_result) |
| OLD | NEW |