OLD | NEW |
1 # Copyright 2014 The LUCI Authors. All rights reserved. | 1 # Copyright 2014 The LUCI Authors. All rights reserved. |
2 # Use of this source code is governed under the Apache License, Version 2.0 | 2 # Use of this source code is governed under the Apache License, Version 2.0 |
3 # that can be found in the LICENSE file. | 3 # that can be found in the LICENSE file. |
4 | 4 |
5 from recipe_engine.recipe_api import Property | 5 from recipe_engine.recipe_api import Property |
6 | 6 |
7 DEPS = [ | 7 DEPS = [ |
8 'properties', | 8 'properties', |
9 'step', | 9 'step', |
10 ] | 10 ] |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 gerrit_project='infra/hidden', | 63 gerrit_project='infra/hidden', |
64 git_url='https://chrome-internal.googlesource.com/infra/hidden', | 64 git_url='https://chrome-internal.googlesource.com/infra/hidden', |
65 **pd)) | 65 **pd)) |
66 yield (api.test('buildbot_tryserver_gerrit_override_both') + | 66 yield (api.test('buildbot_tryserver_gerrit_override_both') + |
67 api.properties.tryserver( | 67 api.properties.tryserver( |
68 gerrit_project='custom', | 68 gerrit_project='custom', |
69 gerrit_url='https://gerrit.my.host', | 69 gerrit_url='https://gerrit.my.host', |
70 git_url='https://git.my.host/custom', | 70 git_url='https://git.my.host/custom', |
71 patch_issue=4455, | 71 patch_issue=4455, |
72 **pd)) | 72 **pd)) |
73 # TODO(tandrii): remove this one. Use the above version instead. | |
74 yield (api.test('buildbot_tryserver_gerrit_deprecated') + | |
75 api.properties.tryserver_gerrit( | |
76 full_project_name='infra/infra', | |
77 gerrit_host='pdfium-review.googlesource.com', | |
78 **pd)) | |
OLD | NEW |