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

Side by Side Diff: catapult_build/build_steps.py

Issue 2361623007: Add a run_eslint wrapper script (Closed)
Patch Set: Synced to head 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
« no previous file with comments | « catapult_build/__init__.py ('k') | catapult_build/js_checks.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 'name': 'Devil Device Tests', 79 'name': 'Devil Device Tests',
80 'path': 'devil/bin/run_py_devicetests', 80 'path': 'devil/bin/run_py_devicetests',
81 'disabled': ['win', 'mac', 'linux'] 81 'disabled': ['win', 'mac', 'linux']
82 }, 82 },
83 { 83 {
84 'name': 'Devil Python Tests', 84 'name': 'Devil Python Tests',
85 'path': 'devil/bin/run_py_tests', 85 'path': 'devil/bin/run_py_tests',
86 'disabled': ['mac', 'win'], 86 'disabled': ['mac', 'win'],
87 }, 87 },
88 { 88 {
89 'name': 'Node Smoke Test', 89 'name': 'eslint Tests',
90 'path': 'common/node_runner/bin/test_node_for_smoke', 90 'path': 'common/eslint/bin/run_tests',
91 'disabled': ['android'], 91 'disabled': ['android'],
92 }, 92 },
93 { 93 {
94 'name': 'Py-vulcanize Tests', 94 'name': 'Py-vulcanize Tests',
95 'path': 'third_party/py_vulcanize/bin/run_py_tests', 95 'path': 'third_party/py_vulcanize/bin/run_py_tests',
96 'additional_args': ['--no-install-hooks'], 96 'additional_args': ['--no-install-hooks'],
97 'disabled': ['android'], 97 'disabled': ['android'],
98 }, 98 },
99 { 99 {
100 'name': 'Systrace Tests', 100 'name': 'Systrace Tests',
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 step['env']['CHROME_DEVEL_SANDBOX'] = '/opt/chromium/chrome_sandbox' 237 step['env']['CHROME_DEVEL_SANDBOX'] = '/opt/chromium/chrome_sandbox'
238 if test.get('outputs_presentation_json'): 238 if test.get('outputs_presentation_json'):
239 step['outputs_presentation_json'] = True 239 step['outputs_presentation_json'] = True
240 steps.append(step) 240 steps.append(step)
241 with open(args.output_json, 'w') as outfile: 241 with open(args.output_json, 'w') as outfile:
242 json.dump(steps, outfile) 242 json.dump(steps, outfile)
243 243
244 244
245 if __name__ == '__main__': 245 if __name__ == '__main__':
246 main(sys.argv[1:]) 246 main(sys.argv[1:])
OLDNEW
« no previous file with comments | « catapult_build/__init__.py ('k') | catapult_build/js_checks.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698