From deaccfcb4b76bd90c4977ba550161cea37dfb75d Mon Sep 17 00:00:00 2001 From: Omar Abdelwahab Date: Mon, 6 Oct 2025 13:36:23 -0700 Subject: [PATCH] updated conftest.py --- tests/integration/conftest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 90838f273..42015a608 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -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")