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

potiuk pushed a commit to branch v2-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v2-10-test by this push:
     new 981bf5d194 Skipping tests for db isolation because similar tests were 
skipped (#41450) (#41951)
981bf5d194 is described below

commit 981bf5d1942734422dbdd84819e40ff89666d7f7
Author: Utkarsh Sharma <[email protected]>
AuthorDate: Mon Sep 2 19:57:24 2024 +0530

    Skipping tests for db isolation because similar tests were skipped (#41450) 
(#41951)
    
    (cherry picked from commit e94b508b946471420488cc466d92301b54b4c5ae)
    
    Co-authored-by: Bugra Ozturk <[email protected]>
---
 tests/sensors/test_external_task_sensor.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/sensors/test_external_task_sensor.py 
b/tests/sensors/test_external_task_sensor.py
index 07ed3ab321..0ca13b343f 100644
--- a/tests/sensors/test_external_task_sensor.py
+++ b/tests/sensors/test_external_task_sensor.py
@@ -809,6 +809,7 @@ exit 0
                 dag=self.dag,
             )
 
+    @pytest.mark.skip_if_database_isolation_mode  # Test is broken in db 
isolation mode
     def test_external_task_sensor_waits_for_task_check_existence(self):
         op = ExternalTaskSensor(
             task_id="test_external_task_sensor_check",
@@ -821,6 +822,7 @@ exit 0
         with pytest.raises(AirflowException):
             op.run(start_date=DEFAULT_DATE, end_date=DEFAULT_DATE, 
ignore_ti_state=True)
 
+    @pytest.mark.skip_if_database_isolation_mode  # Test is broken in db 
isolation mode
     def test_external_task_sensor_waits_for_dag_check_existence(self):
         op = ExternalTaskSensor(
             task_id="test_external_task_sensor_check",

Reply via email to