blob: a2b2e66f7473249c3c2713f7f97e60c11d69cf61 [file] [log] [blame]
# Copyright (c) 2021 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.
"""Presubmit tests for /tools/android/infobar_deprecation.
Runs Python unit tests in /tools/android/infobar_deprecation on upload.
"""
USE_PYTHON3 = True
def CheckChangeOnUpload(input_api, output_api):
result = []
result.extend(
input_api.canned_checks.RunUnitTests(input_api, output_api,
['./infobar_deprecation_test.py']))
return result