Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tests/core/test_impersonation_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__), ".."))
Expand Down