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

Side by Side Diff: build/android/PRESUBMIT.py

Issue 132463007: Enable presubmit pylint in build/android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address frankf review comments. Created 6 years, 10 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 | « no previous file | build/android/adb_logcat_monitor.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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 """Presubmit script for android buildbot. 5 """Presubmit script for android buildbot.
6 6
7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
8 details on the presubmit API built into gcl. 8 details on the presubmit API built into gcl.
9 """ 9 """
10 10
(...skipping 17 matching lines...) Expand all
28 return results 28 return results
29 29
30 30
31 def CommonChecks(input_api, output_api): 31 def CommonChecks(input_api, output_api):
32 output = [] 32 output = []
33 33
34 def J(*dirs): 34 def J(*dirs):
35 """Returns a path relative to presubmit directory.""" 35 """Returns a path relative to presubmit directory."""
36 return input_api.os_path.join(input_api.PresubmitLocalPath(), *dirs) 36 return input_api.os_path.join(input_api.PresubmitLocalPath(), *dirs)
37 37
38 # warnings:
39 # E1002 - |super| on old-style class
40 # R0201 - method could be a function
41 # W0212 - protected member access
42 # W0401 - wildcard import
43 # W0614 - unused import
44 # W0702 - bare-except ("except:")
45
46 warning_exemptions = {
frankf 2014/02/03 21:16:38 is it possible to disable these in the source code
47 r'adb_logcat_printer\.py$' : ['W0702'],
48 r'host_heartbeat\.py$' : ['W0702'],
49 r'pylib/base/test_dispatcher_unittest\.py$' : ['R0201','W0212'],
50 r'pylib/chrome_test_server_spawner\.py$' : ['W0702'],
51 r'pylib/constants\.py$' : ['W0212'],
52 r'pylib/forwarder\.py$' : ['W0212'],
53 r'pylib/gtest/setup\.py$' : ['W0212'],
54 r'pylib/gtest/test_package_apk\.py$' : ['W0212'],
55 r'pylib/gtest/test_package\.py$' : ['R0201'],
56 r'pylib/host_driven/tests_annotations\.py$' : ['W0212'],
57 r'pylib/instrumentation/test_jar\.py$' : ['W0702'],
58 r'pylib/linker/test_case\.py$' : ['R0201'],
59 r'pylib/perf/surface_stats_collector_unittest\.py$' : ['W0212'],
60 r'pylib/pexpect\.py$' : ['W0401','W0614'],
61 r'pylib/utils/reraiser_thread\.py$' : ['W0212'],
62 r'pylib/utils/flakiness_dashboard_results_uploader\.py$' :
63 ['E1002','R0201'],
64 r'pylib/valgrind_tools\.py$' : ['R0201'],
65 r'pylib/utils/timeout_retry\.py$' : ['W0702'],
66 r'pylib/utils/xvfb\.py$' : ['W0702']
67 }
68
69 all_disabled_warnings = ['F0401']
70 # exempt android_commands because it's a mess and will be replaced soon.
71 all_exempted_files = [r'pylib/android_commands\.py$']
72 for filename, warnings in warning_exemptions.items():
73 output.extend(input_api.canned_checks.RunPylint(
74 input_api,
75 output_api,
76 white_list=[filename],
77 disabled_warnings=list(all_disabled_warnings) + warnings))
78 all_exempted_files.append(filename)
79
38 output.extend(input_api.canned_checks.RunPylint( 80 output.extend(input_api.canned_checks.RunPylint(
39 input_api, 81 input_api,
40 output_api, 82 output_api,
41 white_list=[r'PRESUBMIT\.py$', r'buildbot/.*\.py$'], 83 white_list=[r'.*\.py$'],
84 black_list=all_exempted_files,
85 disabled_warnings=list(all_disabled_warnings),
42 extra_paths_list=[ 86 extra_paths_list=[
43 J(), J('..', '..', 'third_party', 'android_testrunner'), 87 J(), J('..', '..', 'third_party', 'android_testrunner'),
44 J('buildbot')])) 88 J('buildbot')]))
45 89
46 output.extend(input_api.canned_checks.RunUnitTestsInDirectory( 90 output.extend(input_api.canned_checks.RunUnitTestsInDirectory(
47 input_api, output_api, J('buildbot', 'tests'))) 91 input_api, output_api, J('buildbot', 'tests')))
48 output.extend(_CheckDeletionsOnlyFiles(input_api, output_api)) 92 output.extend(_CheckDeletionsOnlyFiles(input_api, output_api))
49 return output 93 return output
50 94
51 95
52 def CheckChangeOnUpload(input_api, output_api): 96 def CheckChangeOnUpload(input_api, output_api):
53 return CommonChecks(input_api, output_api) 97 return CommonChecks(input_api, output_api)
54 98
55 99
56 def CheckChangeOnCommit(input_api, output_api): 100 def CheckChangeOnCommit(input_api, output_api):
57 return CommonChecks(input_api, output_api) 101 return CommonChecks(input_api, output_api)
OLDNEW
« no previous file with comments | « no previous file | build/android/adb_logcat_monitor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698