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 fe360cb11d Temporary disable test_retry_handling_job test for sqlite 
(#35206)
fe360cb11d is described below

commit fe360cb11d98305c2b7a5ba090412e4796887082
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Thu Oct 26 19:53:41 2023 +0200

    Temporary disable test_retry_handling_job test for sqlite (#35206)
    
    This test started To fail ONLY on sqlite but only on self-hosted runners
    and locally (not on public runners) We should uncomment it when we
    figure out what's going on.
    
    Related: #35204
---
 tests/jobs/test_scheduler_job.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/tests/jobs/test_scheduler_job.py b/tests/jobs/test_scheduler_job.py
index 5e83c77a64..195b9fce5e 100644
--- a/tests/jobs/test_scheduler_job.py
+++ b/tests/jobs/test_scheduler_job.py
@@ -3034,6 +3034,11 @@ class TestSchedulerJob:
         ti.refresh_from_db()
         assert ti.state == State.SUCCESS
 
+    # TODO: Investigate super-mysterious behaviour of this test hanging for 
sqlite. This test started
+    # To fail ONLY on sqlite but only on self-hosted runners and locally (not 
on public runners)
+    # We should uncomment it when we figure out what's going on
+    # Issue: https://github.com/apache/airflow/issues/35204
+    @pytest.mark.backend("mssql", "mysql", "postgres")
     def test_retry_handling_job(self):
         """
         Integration test of the scheduler not accidentally resetting

Reply via email to