Skip to content

Commit e0f1410

Browse files
author
alrex
authored
disabling tests that have failed inconsistently (open-telemetry#900)
1 parent 61edbfa commit e0f1410

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ext/opentelemetry-ext-docker-tests/tests/celery/test_celery_functional.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class MyException(Exception):
3535
pass
3636

3737

38+
@pytest.mark.skip(reason="inconsistent test results")
3839
def test_instrumentation_info(celery_app, memory_exporter):
3940
@celery_app.task
4041
def fn_task():
@@ -139,6 +140,7 @@ def fn_task(self):
139140
assert span.attributes.get("celery.state") == "SUCCESS"
140141

141142

143+
@pytest.mark.skip(reason="inconsistent test results")
142144
def test_fn_task_apply_async(celery_app, memory_exporter):
143145
@celery_app.task
144146
def fn_task_parameters(user, force_logout=False):
@@ -191,6 +193,7 @@ def fn_task():
191193
assert len(spans) == 200
192194

193195

196+
@pytest.mark.skip(reason="inconsistent test results")
194197
def test_fn_task_delay(celery_app, memory_exporter):
195198
@celery_app.task
196199
def fn_task_parameters(user, force_logout=False):
@@ -430,6 +433,7 @@ def add(x, y):
430433
assert span.attributes.get("messaging.message_id") == result.task_id
431434

432435

436+
@pytest.mark.skip(reason="inconsistent test results")
433437
def test_apply_async_previous_style_tasks(
434438
celery_app, celery_worker, memory_exporter
435439
):

0 commit comments

Comments
 (0)