You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2023/01/07 12:16:42 UTC

[airflow] branch main updated: Move impersonation tests out of Quarantine (#28765)

This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 4f603364d3 Move impersonation tests out of Quarantine (#28765)
4f603364d3 is described below

commit 4f603364d364586a2062b061ddac18c4b58596d2
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Sat Jan 7 13:16:23 2023 +0100

    Move impersonation tests out of Quarantine (#28765)
    
    After #28378 where the tests were converted to Pytest we have high
    hopes those changed could remove flakiness from those tests.
    
    We are gradually removing the tests out of quarantine to see
    whether they are not flaky now (and whether they are not contageous
    any more and do not create side-effects for other tests.
---
 tests/core/test_impersonation_tests.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tests/core/test_impersonation_tests.py b/tests/core/test_impersonation_tests.py
index efbff8f9ef..3297e15a4d 100644
--- a/tests/core/test_impersonation_tests.py
+++ b/tests/core/test_impersonation_tests.py
@@ -120,7 +120,6 @@ class BaseImpersonationTest:
         assert ti.state == State.SUCCESS
 
 
-@pytest.mark.quarantined
 class TestImpersonation(BaseImpersonationTest):
     @classmethod
     def setup_class(cls):
@@ -156,7 +155,6 @@ class TestImpersonation(BaseImpersonationTest):
         self.run_backfill("impersonation_subdag", "test_subdag_operation")
 
 
-@pytest.mark.quarantined
 class TestImpersonationWithCustomPythonPath(BaseImpersonationTest):
     @pytest.fixture(autouse=True)
     def setup_dagbag(self, monkeypatch):