Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Side by Side Diff: recipe_modules/bot_update/example.py

Issue 2439373002: bot_update: understand new Gerrit patch properties. (Closed)
Patch Set: lint Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 )
OLDNEW
« no previous file with comments | « recipe_modules/bot_update/api.py ('k') | recipe_modules/bot_update/example.expected/tryjob_gerrit_angle.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698