OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 DEPS = [ | 5 DEPS = [ |
6 'bot_update', | 6 'bot_update', |
7 'gclient', | 7 'gclient', |
8 'recipe_engine/platform', | 8 'recipe_engine/platform', |
9 'recipe_engine/path', | 9 'recipe_engine/path', |
10 'recipe_engine/properties', | 10 'recipe_engine/properties', |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 yield api.test('tryjob_v8') + api.properties( | 134 yield api.test('tryjob_v8') + api.properties( |
135 issue=12345, | 135 issue=12345, |
136 patchset=654321, | 136 patchset=654321, |
137 rietveld='https://rietveld.example.com/', | 137 rietveld='https://rietveld.example.com/', |
138 patch_project='v8', | 138 patch_project='v8', |
139 revisions={'src/v8': 'abc'} | 139 revisions={'src/v8': 'abc'} |
140 ) | 140 ) |
141 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( | 141 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( |
142 patch_project='v8', | 142 patch_project='v8', |
143 ) | 143 ) |
144 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit( | 144 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver( |
145 full_project_name='angle/angle', | 145 gerrit_project='angle/angle', |
| 146 patch_issue=338811, |
| 147 patch_set=3, |
146 ) | 148 ) |
| 149 yield (api.test('tryjob_gerrit_angle_deprecated') + |
| 150 api.properties.tryserver_gerrit(full_project_name='angle/angle') |
| 151 ) |
OLD | NEW |