| OLD | NEW |
| 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 import argparse | 5 import argparse |
| 6 import json | 6 import json |
| 7 import os | 7 import os |
| 8 import sys | 8 import sys |
| 9 | 9 |
| 10 # This is the list of tests to run. It is a dictionary with the following | 10 # This is the list of tests to run. It is a dictionary with the following |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 'path': 'dashboard/bin/run_py_tests', | 69 'path': 'dashboard/bin/run_py_tests', |
| 70 'additional_args': ['--no-install-hooks'], | 70 'additional_args': ['--no-install-hooks'], |
| 71 'uses_app_engine_sdk': True, | 71 'uses_app_engine_sdk': True, |
| 72 'disabled': ['android'], | 72 'disabled': ['android'], |
| 73 }, | 73 }, |
| 74 { | 74 { |
| 75 'name': 'Dependency Manager Tests', | 75 'name': 'Dependency Manager Tests', |
| 76 'path': 'dependency_manager/bin/run_tests', | 76 'path': 'dependency_manager/bin/run_tests', |
| 77 }, | 77 }, |
| 78 { | 78 { |
| 79 'name': 'Devil Device Tests', |
| 80 'path': 'devil/devil/android/device_utils_devicetest.py', |
| 81 'disabled': ['win', 'mac', 'linux'] |
| 82 }, |
| 83 { |
| 79 'name': 'Devil Python Tests', | 84 'name': 'Devil Python Tests', |
| 80 'path': 'devil/bin/run_py_tests', | 85 'path': 'devil/bin/run_py_tests', |
| 81 'disabled': ['mac', 'win'], | 86 'disabled': ['mac', 'win'], |
| 82 }, | 87 }, |
| 83 { | 88 { |
| 84 'name': 'Perf Insights Dev Server Tests Canary', | 89 'name': 'Perf Insights Dev Server Tests Canary', |
| 85 'path': 'perf_insights/bin/run_dev_server_tests', | 90 'path': 'perf_insights/bin/run_dev_server_tests', |
| 86 'additional_args': [ | 91 'additional_args': [ |
| 87 '--no-install-hooks', | 92 '--no-install-hooks', |
| 88 '--no-use-local-chrome', | 93 '--no-use-local-chrome', |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 step['env']['CHROME_DEVEL_SANDBOX'] = '/opt/chromium/chrome_sandbox' | 249 step['env']['CHROME_DEVEL_SANDBOX'] = '/opt/chromium/chrome_sandbox' |
| 245 if test.get('outputs_presentation_json'): | 250 if test.get('outputs_presentation_json'): |
| 246 step['outputs_presentation_json'] = True | 251 step['outputs_presentation_json'] = True |
| 247 steps.append(step) | 252 steps.append(step) |
| 248 with open(args.output_json, 'w') as outfile: | 253 with open(args.output_json, 'w') as outfile: |
| 249 json.dump(steps, outfile) | 254 json.dump(steps, outfile) |
| 250 | 255 |
| 251 | 256 |
| 252 if __name__ == '__main__': | 257 if __name__ == '__main__': |
| 253 main(sys.argv[1:]) | 258 main(sys.argv[1:]) |
| OLD | NEW |