summaryrefslogtreecommitdiff
path: root/BaseTools/Tests/conftest.py
blob: 151f21a6b4f2a15840e9d8facf343fceed20e4a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## @file
# pytest configuration for BaseTools tests
#
# Copyright (c) 2026, Intel Corporation. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#

import pytest


def pytest_addoption(parser):
    parser.addoption(
        "--toolchain",
        default="VS2022",
        help="EDK II toolchain tag (default: VS2022)"
    )