OLD | NEW |
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 depot_tools. | 8 details on the presubmit API built into depot_tools. |
9 """ | 9 """ |
10 | 10 |
11 | 11 |
12 def CommonChecks(input_api, output_api): | 12 def CommonChecks(input_api, output_api): |
13 output = [] | 13 output = [] |
14 | 14 |
15 def J(*dirs): | 15 def J(*dirs): |
16 """Returns a path relative to presubmit directory.""" | 16 """Returns a path relative to presubmit directory.""" |
17 return input_api.os_path.join(input_api.PresubmitLocalPath(), *dirs) | 17 return input_api.os_path.join(input_api.PresubmitLocalPath(), *dirs) |
18 | 18 |
19 output.extend(input_api.canned_checks.RunPylint( | 19 output.extend(input_api.canned_checks.RunPylint( |
20 input_api, | 20 input_api, |
21 output_api, | 21 output_api, |
22 black_list=[r'pylib/symbols/.*\.py$', r'gyp/.*\.py$', r'gn/.*\.py'], | 22 black_list=[r'pylib/symbols/.*\.py$', r'gyp/.*\.py$', r'gn/.*\.py'], |
23 extra_paths_list=[J(), J('buildbot')])) | 23 extra_paths_list=[ |
| 24 J(), J('..', '..', 'third_party', 'android_testrunner'), |
| 25 J('buildbot')])) |
24 output.extend(input_api.canned_checks.RunPylint( | 26 output.extend(input_api.canned_checks.RunPylint( |
25 input_api, | 27 input_api, |
26 output_api, | 28 output_api, |
27 white_list=[r'gyp/.*\.py$', r'gn/.*\.py'], | 29 white_list=[r'gyp/.*\.py$', r'gn/.*\.py'], |
28 extra_paths_list=[J('gyp'), J('gn')])) | 30 extra_paths_list=[J('gyp'), J('gn')])) |
29 | 31 |
30 # Disabled due to http://crbug.com/410936 | 32 # Disabled due to http://crbug.com/410936 |
31 #output.extend(input_api.canned_checks.RunUnitTestsInDirectory( | 33 #output.extend(input_api.canned_checks.RunUnitTestsInDirectory( |
32 #input_api, output_api, J('buildbot', 'tests'))) | 34 #input_api, output_api, J('buildbot', 'tests'))) |
33 | 35 |
(...skipping 20 matching lines...) Expand all Loading... |
54 env=pylib_test_env)) | 56 env=pylib_test_env)) |
55 return output | 57 return output |
56 | 58 |
57 | 59 |
58 def CheckChangeOnUpload(input_api, output_api): | 60 def CheckChangeOnUpload(input_api, output_api): |
59 return CommonChecks(input_api, output_api) | 61 return CommonChecks(input_api, output_api) |
60 | 62 |
61 | 63 |
62 def CheckChangeOnCommit(input_api, output_api): | 64 def CheckChangeOnCommit(input_api, output_api): |
63 return CommonChecks(input_api, output_api) | 65 return CommonChecks(input_api, output_api) |
OLD | NEW |