| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 66692d2d3f8c75164b2350db702acc4f81efca2e..0d7e08a0bd465b48460b03fd4c41cbe535b39590 100755
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -9,23 +9,27 @@ See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
|
| details on the presubmit API built into gcl.
|
| """
|
|
|
| +UNIT_TESTS = [
|
| + 'tests.gcl_unittest',
|
| + 'tests.gclient_test',
|
| + 'tests.presubmit_unittest',
|
| + 'tests.revert_unittest',
|
| + 'tests.trychange_unittest',
|
| +]
|
|
|
| def CheckChangeOnUpload(input_api, output_api):
|
| - return RunUnitTests(input_api, output_api)
|
| + output = []
|
| + output.extend(input_api.canned_checks.RunPythonUnitTests(input_api,
|
| + output_api,
|
| + UNIT_TESTS))
|
| + return output
|
|
|
|
|
| def CheckChangeOnCommit(input_api, output_api):
|
| - unit_tests = [
|
| - 'tests.gcl_unittest',
|
| - 'tests.gclient_test',
|
| - 'tests.presubmit_unittest',
|
| - 'tests.revert_unittest',
|
| - 'tests.trychange_unittest',
|
| - ]
|
| output = []
|
| output.extend(input_api.canned_checks.RunPythonUnitTests(input_api,
|
| output_api,
|
| - unit_tests))
|
| + UNIT_TESTS))
|
| output.extend(input_api.canned_checks.CheckDoNotSubmit(input_api,
|
| output_api))
|
| return output
|
|
|