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

Side by Side Diff: chrome/browser/test_presubmit.py

Issue 2592193002: Remove closure_linter from Chrome (Closed)
Patch Set: Created 4 years 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 | « no previous file | chrome/browser/web_dev_style/closure_lint_test.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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2015 The Chromium Authors. All rights reserved. 2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Unit test runner for Web Development Style Guide checks.""" 6 """Unit test runner for Web Development Style Guide checks."""
7 7
8 from web_dev_style import closure_lint_test, \ 8 from web_dev_style import css_checker_test, \
9 css_checker_test, \
10 html_checker_test, \ 9 html_checker_test, \
11 js_checker_test, \ 10 js_checker_test, \
12 resource_checker_test 11 resource_checker_test
13 12
14 _TEST_MODULES = [ 13 _TEST_MODULES = [
15 closure_lint_test,
16 css_checker_test, 14 css_checker_test,
17 html_checker_test, 15 html_checker_test,
18 js_checker_test, 16 js_checker_test,
19 resource_checker_test 17 resource_checker_test
20 ] 18 ]
21 19
22 for test_module in _TEST_MODULES: 20 for test_module in _TEST_MODULES:
23 test_module.unittest.main(test_module) 21 test_module.unittest.main(test_module)
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/web_dev_style/closure_lint_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698