blob: f1dd4eedb8d36a29e045260849e737117ad4eb8f [file] [log] [blame]
# Copyright 2024 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Runs Python unit tests in this directory.
"""
PRESUBMIT_VERSION = '2.0.0'
def CheckPythonUnittestsPass(input_api, output_api):
results = []
this_dir = input_api.PresubmitLocalPath()
results += input_api.RunTests(
input_api.canned_checks.GetUnitTestsInDirectory(
input_api,
output_api,
this_dir,
files_to_check=['.*unittest.*\.py$'],
env=None))
return results