OLD | NEW |
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 """Environment setup and teardown for remote devices.""" | 5 """Environment setup and teardown for remote devices.""" |
6 | 6 |
7 import distutils.version | 7 import distutils.version |
8 import json | 8 import json |
9 import logging | 9 import logging |
10 import os | 10 import os |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 | 324 |
325 @property | 325 @property |
326 def device_type_id(self): | 326 def device_type_id(self): |
327 return self._device['device_type_id'] | 327 return self._device['device_type_id'] |
328 | 328 |
329 @property | 329 @property |
330 def network_config(self): | 330 def network_config(self): |
331 return self._network_config | 331 return self._network_config |
332 | 332 |
333 @property | 333 @property |
| 334 def only_output_failures(self): |
| 335 # TODO(jbudorick): Remove this once b/18981674 is fixed. |
| 336 return True |
| 337 |
| 338 @property |
334 def results_path(self): | 339 def results_path(self): |
335 return self._results_path | 340 return self._results_path |
336 | 341 |
337 @property | 342 @property |
338 def runner_package(self): | 343 def runner_package(self): |
339 return self._runner_package | 344 return self._runner_package |
340 | 345 |
341 @property | 346 @property |
342 def runner_type(self): | 347 def runner_type(self): |
343 return self._runner_type | 348 return self._runner_type |
(...skipping 10 matching lines...) Expand all Loading... |
354 def trigger(self): | 359 def trigger(self): |
355 return self._trigger | 360 return self._trigger |
356 | 361 |
357 @property | 362 @property |
358 def verbose_count(self): | 363 def verbose_count(self): |
359 return self._verbose_count | 364 return self._verbose_count |
360 | 365 |
361 @property | 366 @property |
362 def device_type(self): | 367 def device_type(self): |
363 return self._device_type | 368 return self._device_type |
OLD | NEW |