This is an automated email from the ASF dual-hosted git repository.
dstandish 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 fa81c3ad4c Mark celery redis integration test as flaky (#32078)
fa81c3ad4c is described below
commit fa81c3ad4c7ed83ee3aa6375dcbf3235f3663287
Author: Daniel Standish <[email protected]>
AuthorDate: Thu Jun 22 09:33:26 2023 -0700
Mark celery redis integration test as flaky (#32078)
---
tests/integration/executors/test_celery_executor.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/integration/executors/test_celery_executor.py
b/tests/integration/executors/test_celery_executor.py
index 6923bb73fd..4be7633c3e 100644
--- a/tests/integration/executors/test_celery_executor.py
+++ b/tests/integration/executors/test_celery_executor.py
@@ -101,6 +101,7 @@ class TestCeleryExecutor:
db.clear_db_runs()
db.clear_db_jobs()
+ @pytest.mark.flaky(reruns=3)
@pytest.mark.parametrize("broker_url", _prepare_test_bodies())
def test_celery_integration(self, broker_url):
success_command = ["airflow", "tasks", "run", "true", "some_parameter"]