From a269176428a2cd401c92173103eda8277ce3ecdd Mon Sep 17 00:00:00 2001 From: Andrey Anshin Date: Mon, 11 Mar 2024 13:33:10 +0400 Subject: [PATCH] Move `tests/core/test_impersonation_tests` into the Quarantined --- tests/core/test_impersonation_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/core/test_impersonation_tests.py b/tests/core/test_impersonation_tests.py index bc7d67503a8b0..3fa2d3b981fdb 100644 --- a/tests/core/test_impersonation_tests.py +++ b/tests/core/test_impersonation_tests.py @@ -37,7 +37,9 @@ from airflow.utils.types import DagRunType from tests.test_utils import db -pytestmark = pytest.mark.db_test +# The entire module into the quarantined mark, this might have unpredictable side effects to other tests +# and should be moved into the isolated environment into the future. +pytestmark = [pytest.mark.db_test, pytest.mark.quarantined] DEV_NULL = "/dev/null" TEST_ROOT_FOLDER = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))