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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 yield (api.test('buildbot_tryserver_gerrit_override_git') + | 61 yield (api.test('buildbot_tryserver_gerrit_override_git') + |
62 api.properties.tryserver( | 62 api.properties.tryserver( |
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=989898, |
| 72 patch_set=3, |
72 **pd)) | 73 **pd)) |
OLD | NEW |