blob: a09ab3820614aa1fa757eda1ddcd0228c6b4b4c3 [file] [log] [blame]
Mike Frysinger1b117db2020-02-08 03:38:48 -05001#!/usr/bin/env python
Mike Frysinger4f42a972019-06-12 17:42:43 -04002# -*- coding:utf-8 -*-
3# Copyright 2019 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17"""Wrapper to run pytest with the right settings."""
18
19from __future__ import print_function
20
21import errno
22import os
23import subprocess
24import sys
25
26
27def run_pytest(cmd, argv):
28 """Run the unittests via |cmd|."""
29 try:
Mike Frysinger6f8c85c2019-12-01 22:42:14 -050030 return subprocess.call([cmd] + argv)
Mike Frysinger4f42a972019-06-12 17:42:43 -040031 except OSError as e:
32 if e.errno == errno.ENOENT:
33 print('%s: unable to run `%s`: %s' % (__file__, cmd, e), file=sys.stderr)
34 print('%s: Try installing pytest: sudo apt-get install python-pytest' %
35 (__file__,), file=sys.stderr)
Mike Frysinger6f8c85c2019-12-01 22:42:14 -050036 return 127
Mike Frysinger4f42a972019-06-12 17:42:43 -040037 else:
38 raise
39
40
41def main(argv):
42 """The main entry."""
43 # Add the repo tree to PYTHONPATH as the tests expect to be able to import
44 # modules directly.
Mike Frysingerd2163842020-02-15 13:44:56 -050045 pythonpath = os.path.dirname(os.path.realpath(__file__))
46 oldpythonpath = os.environ.get('PYTHONPATH', None)
47 if oldpythonpath is not None:
48 pythonpath += os.pathsep + oldpythonpath
49 os.environ['PYTHONPATH'] = pythonpath
Mike Frysinger4f42a972019-06-12 17:42:43 -040050
51 return run_pytest('pytest', argv)
52
53
54if __name__ == '__main__':
55 sys.exit(main(sys.argv[1:]))