blob: 70ee1be65fac1d90e9b1c45133be344e85d23e9c [file] [log] [blame]
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Top-level presubmit script for chromium-status.
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts for
details on the presubmit API built into gcl.
"""
UNIT_TESTS = [
# Disabled until they actually work again.
#'tests.main_test',
]
def CommonChecks(input_api, output_api):
output = []
join = input_api.os_path.join
root = input_api.PresubmitLocalPath()
while True:
if input_api.os_path.isfile(join(root, 'google_appengine', 'VERSION')):
break
next_root = input_api.os_path.dirname(root)
if next_root == root:
return [output_api.PresubmitError('Failed to find Google AppEngine SDK')]
root = next_root
input_api.logging.debug('Found GAE SDK in %s' % root)
import sys
sys_path_backup = sys.path
try:
sys.path = [
join(root, 'google_appengine'),
join(root, 'google_appengine', 'lib'),
] + sys.path
output.extend(input_api.canned_checks.RunPylint(
input_api,
output_api))
finally:
sys.path = sys_path_backup
output.extend(input_api.canned_checks.RunPythonUnitTests(
input_api,
output_api,
UNIT_TESTS))
return output
def CheckChangeOnUpload(input_api, output_api):
return CommonChecks(input_api, output_api)
def CheckChangeOnCommit(input_api, output_api):
return CommonChecks(input_api, output_api)