blob: 03668cd73073d32341693fbc0094a86bca21c9bb [file] [log] [blame]
#!/usr/bin/env vpython3
# Copyright 2025 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Dependencies needed to run unittests.
#
# For info on this file, see:
# https://chromium.googlesource.com/infra/infra/+/HEAD/doc/users/vpython.md#available-wheels
# [VPYTHON:BEGIN]
# python_version: "3.11"
#
# wheel: <
# name: "infra/python/wheels/certifi-py3"
# version: "version:2024.7.4"
# >
# wheel: <
# name: "infra/python/wheels/charset_normalizer-py3"
# version: "version:2.0.12"
# >
# wheel: <
# name: "infra/python/wheels/configargparse-py3"
# version: "version:1.7"
# >
# wheel: <
# name: "infra/python/wheels/idna-py3"
# version: "version:3.4"
# >
# wheel: <
# name: "infra/python/wheels/iniconfig-py3"
# version: "version:1.1.1"
# >
# wheel: <
# name: "infra/python/wheels/packaging-py2_py3"
# version: "version:16.8"
# >
# wheel: <
# name: "infra/python/wheels/pluggy-py3"
# version: "version:1.5.0"
# >
# wheel: <
# name: "infra/python/wheels/pyparsing-py2_py3"
# version: "version:2.2.0"
# >
# wheel: <
# name: "infra/python/wheels/pytest-py3"
# version: "version:8.3.4"
# >
# wheel: <
# name: "infra/python/wheels/requests-py3"
# version: "version:2.31.0"
# >
# wheel: <
# name: "infra/python/wheels/six-py2_py3"
# version: "version:1.16.0"
# >
# wheel: <
# name: "infra/python/wheels/urllib3-py3"
# version: "version:2.1.0"
# >
# wheel: <
# name: "infra/python/wheels/pyyaml-py3"
# version: "version:6.0.1"
# >
# wheel: <
# name: "infra/python/wheels/protobuf-py3"
# version: "version:6.32.1"
# >
# [VPYTHON:END]
"""Wrapper for stable version of pytest that we control.
We can't name this "pytest" because it confuses pylint.
"""
import pytest
pytest.main()