updated conftest.py

This commit is contained in:
Omar Abdelwahab 2025-10-06 13:36:23 -07:00
parent 236f235ddb
commit deaccfcb4b

View file

@ -259,6 +259,9 @@ def pytest_generate_tests(metafunc):
metafunc.parametrize(params, value_combinations, scope="session", ids=test_ids if test_ids else None)
pytest_plugins = ["tests.integration.fixtures.common"]
def pytest_ignore_collect(path: str, config: pytest.Config) -> bool:
"""Skip collecting paths outside the selected suite roots for speed."""
suite = config.getoption("--suite")