-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconftest.py
32 lines (25 loc) · 1.02 KB
/
conftest.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import pytest
import os
# Global FULL_SUITE flag to control which parameter sets are used
FULL_SUITE = None
def pytest_addoption(parser):
"""Add the --full-suite command-line option for pytest."""
parser.addoption(
"--full-suite", action="store_true", default=False, help="Run the full test suite"
)
def pytest_configure(config):
"""Set the FULL_SUITE flag based on --full-suite option or environment variable."""
global FULL_SUITE
FULL_SUITE = config.getoption("--full-suite") or os.getenv("FULL_TESTS") == "1"
def conditional_parametrize(argnames, quick_params, full_params):
"""Decorator for conditional parameterization based on FULL_SUITE flag."""
def decorator(func):
if FULL_SUITE:
return pytest.mark.parametrize(argnames, full_params)(func)
else:
return pytest.mark.parametrize(argnames, quick_params)(func)
return decorator
def conditional_value(quick_value, full_value):
if FULL_SUITE:
return quick_value
return full_value