We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
tests/core/test_impersonation_tests
1 parent f6e7489 commit be2c93aCopy full SHA for be2c93a
tests/core/test_impersonation_tests.py
@@ -37,7 +37,9 @@
37
from airflow.utils.types import DagRunType
38
from tests.test_utils import db
39
40
-pytestmark = pytest.mark.db_test
+# The entire module into the quarantined mark, this might have unpredictable side effects to other tests
41
+# and should be moved into the isolated environment into the future.
42
+pytestmark = [pytest.mark.db_test, pytest.mark.quarantined]
43
44
DEV_NULL = "/dev/null"
45
TEST_ROOT_FOLDER = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
0 commit comments