| 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 """Top-level presubmit script for reviewbot. | 5 """Top-level presubmit script for reviewbot. |
| 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 21 matching lines...) Expand all Loading... |
| 32 join(root, 'google_appengine', 'lib', 'webapp2-2.5.2'), | 32 join(root, 'google_appengine', 'lib', 'webapp2-2.5.2'), |
| 33 join(root, 'google_appengine', 'lib', 'webob-1.2.3'), | 33 join(root, 'google_appengine', 'lib', 'webob-1.2.3'), |
| 34 join('third_party', 'google-api-python-client'), | 34 join('third_party', 'google-api-python-client'), |
| 35 ] + sys.path | 35 ] + sys.path |
| 36 output.extend(input_api.canned_checks.RunPylint( | 36 output.extend(input_api.canned_checks.RunPylint( |
| 37 input_api, | 37 input_api, |
| 38 output_api)) | 38 output_api)) |
| 39 finally: | 39 finally: |
| 40 sys.path = sys_path_backup | 40 sys.path = sys_path_backup |
| 41 | 41 |
| 42 output.extend(input_api.canned_checks.RunUnitTestsInDirectory( |
| 43 input_api, |
| 44 output_api, |
| 45 '.', |
| 46 whitelist=[r'.*_test\.py$'])) |
| 47 |
| 42 return output | 48 return output |
| 43 | 49 |
| 44 | 50 |
| 45 def CheckChangeOnUpload(input_api, output_api): | 51 def CheckChangeOnUpload(input_api, output_api): |
| 46 return CommonChecks(input_api, output_api) | 52 return CommonChecks(input_api, output_api) |
| 47 | 53 |
| 48 | 54 |
| 49 def CheckChangeOnCommit(input_api, output_api): | 55 def CheckChangeOnCommit(input_api, output_api): |
| 50 return CommonChecks(input_api, output_api) | 56 return CommonChecks(input_api, output_api) |
| OLD | NEW |