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

Side by Side Diff: infra/recipes/canary.py

Issue 2318353002: Remove ignored "force" parameter from bot_update. (Closed)
Patch Set: rebase Created 4 years, 3 months 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 """A recipe that just checks out chromium, for canarying src-side recipes.""" 5 """A recipe that just checks out chromium, for canarying src-side recipes."""
6 6
7 DEPS = [ 7 DEPS = [
8 'recipe_engine/properties', 8 'recipe_engine/properties',
9 'depot_tools/bot_update', 9 'depot_tools/bot_update',
10 'depot_tools/gclient', 10 'depot_tools/gclient',
11 ] 11 ]
12 12
13 def RunSteps(api): 13 def RunSteps(api):
14 api.gclient.set_config('chromium') 14 api.gclient.set_config('chromium')
15 api.bot_update.ensure_checkout(force=True) 15 api.bot_update.ensure_checkout()
16 16
17 def GenTests(api): 17 def GenTests(api):
18 yield api.test('basic') + api.properties.generic() 18 yield api.test('basic') + api.properties.generic()
OLDNEW
« no previous file with comments | « infra/recipes/blink_downstream.expected/webkit_tests_unexpected_error.json ('k') | infra/recipes/canary.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698