• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2017 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5
6DEPS = [
7  'ct',
8  'recipe_engine/path',
9]
10
11
12def RunSteps(api):
13  api.ct.download_swarming_skps(
14      'All', '0', 'abc123',
15      api.path['start_dir'].join('skps'),
16      start_range=100,
17      num_skps=100)
18
19
20def GenTests(api):
21  yield api.test('test')
22  yield (
23      api.test('failed_gsutil') +
24      api.step_data('gsutil cp', retcode=1)
25  )
26