This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 4bdf46d Mark `test_send_tas_to_celery_hang` as quarantined (#16169)
4bdf46d is described below
commit 4bdf46d2284c06d82a2574831028cbddc520ca8f
Author: Jarek Potiuk <[email protected]>
AuthorDate: Sun May 30 14:31:08 2021 +0200
Mark `test_send_tas_to_celery_hang` as quarantined (#16169)
The test_send_tasks_to_celery_hang hangs on self-hosted runners more
often than not.
It's been introduced in #15989 and while the test does not usually hang
on regular GitHub runners, or in case of running it locally (I could not
make it fail), it does hang almost always when run on self-hosted
runners.
Marking it as quarantined for now.
Issue #16168 created to keep track of it.
---
tests/executors/test_celery_executor.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/executors/test_celery_executor.py
b/tests/executors/test_celery_executor.py
index 19c8a0d..91a18c7 100644
--- a/tests/executors/test_celery_executor.py
+++ b/tests/executors/test_celery_executor.py
@@ -522,6 +522,7 @@ def register_signals():
signal.signal(signal.SIGUSR2, orig_sigusr2)
[email protected]
def test_send_tasks_to_celery_hang(register_signals): # pylint:
disable=unused-argument
"""
Test that celery_executor does not hang after many runs.