OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 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 """Launches Legion tests.""" | 5 """Launches Legion tests.""" |
6 | 6 |
7 from recipe_engine.types import freeze | 7 from infra.libs.infra_types import freeze |
8 | 8 |
9 DEPS = [ | 9 DEPS = [ |
10 'bot_update', | 10 'bot_update', |
11 'gclient', | 11 'gclient', |
12 'isolate', | 12 'isolate', |
13 'legion', | 13 'legion', |
14 'path', | 14 'path', |
15 'properties', | 15 'properties', |
16 'swarming', | 16 'swarming', |
17 ] | 17 ] |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 name=name, | 75 name=name, |
76 path=api.path['checkout'].join(*path), | 76 path=api.path['checkout'].join(*path), |
77 config_vars=config['config_vars'] | 77 config_vars=config['config_vars'] |
78 ) | 78 ) |
79 | 79 |
80 api.legion.execute(controller) | 80 api.legion.execute(controller) |
81 | 81 |
82 | 82 |
83 def GenTests(api): | 83 def GenTests(api): |
84 yield api.test('basic') + api.properties.generic() | 84 yield api.test('basic') + api.properties.generic() |
OLD | NEW |