blob: 4f6897a1cc077ffbffe04d2af4009aaaafc5ba41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2018 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 /third_party/sqlite.
Runs Python unit tests in /third_party/sqlite/scripts on upload.
"""
def CheckChangeOnUpload(input_api, output_api):
results = []
this_dir = input_api.PresubmitLocalPath()
results += input_api.RunTests(
input_api.canned_checks.GetUnitTestsInDirectory(
input_api,
output_api,
input_api.os_path.join(this_dir, 'scripts'),
files_to_check=['.*unittest.py$'],
env=None,
run_on_python2=False,
run_on_python3=True))
return results
|