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

Side by Side Diff: scripts/slave/recipe_modules/swarming/__init__.py

Issue 2375663003: Add json test results format support for SwarmingIsolatedScriptTest (Closed)
Patch Set: Fix typos Created 4 years, 2 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 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 DEPS = [ 5 DEPS = [
6 'isolate', 6 'isolate',
7 'recipe_engine/json', 7 'recipe_engine/json',
8 'recipe_engine/path', 8 'recipe_engine/path',
9 'recipe_engine/platform', 9 'recipe_engine/platform',
10 'recipe_engine/properties', 10 'recipe_engine/properties',
11 'recipe_engine/python', 11 'recipe_engine/python',
12 'recipe_engine/raw_io', 12 'recipe_engine/raw_io',
13 'recipe_engine/step', 13 'recipe_engine/step',
14 'swarming_client', 14 'swarming_client',
15 'test_utils', 15 'test_utils',
16 ] 16 ]
17 17
18 from recipe_engine.recipe_api import Property 18 try:
Ken Russell (switch to Gerrit) 2016/10/04 01:43:43 Add a comment that this try/catch enables the resu
nednguyen 2016/10/04 01:49:52 This may not be needed if I migrate result_merger
19 from recipe_engine.recipe_api import Property
19 20
20 PROPERTIES = { 21 PROPERTIES = {
21 'show_shards_in_collect_step': Property(default=False, kind=bool), 22 'show_shards_in_collect_step': Property(default=False, kind=bool),
22 'show_isolated_out_in_collect_step': Property(default=True, kind=bool), 23 'show_isolated_out_in_collect_step': Property(default=True, kind=bool),
23 } 24 }
25 except ImportError:
26 pass
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/swarming/api.py » ('j') | scripts/slave/recipe_modules/swarming/api.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698