Chris McDonald | 17d86b3 | 2020-03-18 17:28:43 -0600 | [diff] [blame] | 1 | # -*- coding: utf-8 -*- |
2 | # Copyright 2020 The Chromium OS Authors. All rights reserved. | ||||
3 | # Use of this source code is governed by a BSD-style license that can be | ||||
4 | # found in the LICENSE file. | ||||
5 | |||||
6 | """Wrapper to execute pytest inside the chromite virtualenv.""" | ||||
7 | |||||
8 | from __future__ import print_function | ||||
9 | |||||
10 | import sys | ||||
11 | |||||
12 | import pytest # pylint: disable=import-error | ||||
13 | |||||
14 | |||||
15 | def main(argv): | ||||
16 | sys.exit(pytest.main(argv)) |