| Index: PRESUBMIT.py
|
| diff --git a/PRESUBMIT.py b/PRESUBMIT.py
|
| index 8ea1fd9cf81445a293b9f7ccc3e1aa6573eb9e27..ec7e8a978e065fff14fde3641f13fd2fa338de40 100644
|
| --- a/PRESUBMIT.py
|
| +++ b/PRESUBMIT.py
|
| @@ -20,6 +20,7 @@ UNIT_TESTS = [
|
| 'tests.watchlists_unittest',
|
| ]
|
|
|
| +
|
| def CommonChecks(input_api, output_api):
|
| output = []
|
| # Verify that LocalPath() is local, e.g.:
|
| @@ -31,9 +32,11 @@ def CommonChecks(input_api, output_api):
|
| # Return right away because it needs to be fixed first.
|
| return output
|
|
|
| - output.extend(input_api.canned_checks.CheckOwners(
|
| - input_api,
|
| - output_api))
|
| + # TODO(dpranke): uncomment and enable :).
|
| + #
|
| + # output.extend(input_api.canned_checks.CheckOwners(
|
| + # input_api,
|
| + # output_api))
|
|
|
| output.extend(input_api.canned_checks.RunPythonUnitTests(
|
| input_api,
|
|
|