| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'depot_tools/bot_update', | 6 'depot_tools/bot_update', |
| 7 'depot_tools/gclient', | 7 'depot_tools/gclient', |
| 8 'recipe_engine/properties', | 8 'recipe_engine/properties', |
| 9 ] | 9 ] |
| 10 | 10 |
| 11 | 11 |
| 12 def RunSteps(api): | 12 def RunSteps(api): |
| 13 api.gclient.set_config('luci_py') | 13 api.gclient.set_config('luci_py') |
| 14 api.bot_update.ensure_checkout(force=True) | 14 api.bot_update.ensure_checkout(force=True) |
| 15 # TODO(tandrii): trigger tests without PRESUBMIT.py . | 15 # TODO(tandrii): trigger tests without PRESUBMIT.py . |
| 16 | 16 |
| 17 | 17 |
| 18 def GenTests(api): | 18 def GenTests(api): |
| 19 yield ( | 19 yield ( |
| 20 api.test('luci_py') + | 20 api.test('luci_py') + |
| 21 api.properties.git_scheduled( | 21 api.properties.git_scheduled( |
| 22 buildername='luci-py-linux64', | 22 buildername='luci-py-linux64', |
| 23 buildnumber=123, | 23 buildnumber=123, |
| 24 mastername='chromium.infra', | 24 mastername='chromium.infra', |
| 25 repository='https://chromium.googlesource.com/external/github.com/luci/l
uci-py', | 25 repository='https://chromium.googlesource.com/external/github.com/' + |
| 26 'luci/luci-py', |
| 26 ) | 27 ) |
| 27 ) | 28 ) |
| OLD | NEW |