We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b68fdc commit 78424faCopy full SHA for 78424fa
instrumentation/opentelemetry-instrumentation-celery/tests/test_metrics.py
@@ -1,7 +1,10 @@
1
import threading
2
import time
3
+from platform import python_implementation
4
from timeit import default_timer
5
6
+from pytest import mark
7
+
8
from opentelemetry.instrumentation.celery import CeleryInstrumentor
9
from opentelemetry.test.test_base import TestBase
10
@@ -62,6 +65,9 @@ def test_basic_metric(self):
62
65
est_value_delta=200,
63
66
)
64
67
68
+ @mark.skipif(
69
+ python_implementation() == "PyPy", reason="Fails randomly in pypy"
70
+ )
71
def test_metric_uninstrument(self):
72
CeleryInstrumentor().instrument()
73
0 commit comments