blob: 8772ff78d9fc02eccb11bc3fee6fcef9b4e85599 [file] [log] [blame]
Chris McDonald17d86b32020-03-18 17:28:43 -06001# -*- 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
8from __future__ import print_function
9
10import sys
11
12import pytest # pylint: disable=import-error
13
14
15def main(argv):
16 sys.exit(pytest.main(argv))