blob: af0c76fc830bcf304390765eef8c27207d90357a [file] [log] [blame]
# Copyright 2017 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.
USE_PYTHON3 = True
def CheckChangeOnUpload(*args):
return _CommonChecks(*args)
def CheckChangeOnCommit(*args):
return _CommonChecks(*args)
def _CommonChecks(input_api, output_api):
tests = ['test_suite.py']
return input_api.canned_checks.RunUnitTests(input_api, output_api, tests)