File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
util/opentelemetry-util-genai/tests Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 2020import threading
2121import time
2222from contextlib import contextmanager
23+ from platform import python_implementation
2324from typing import Any
24- from unittest import TestCase
25+ from unittest import TestCase , skipIf
2526from unittest .mock import ANY , MagicMock , patch
2627
2728import fsspec
@@ -148,6 +149,9 @@ def blocked_upload(*args: Any, **kwargs: Any):
148149 def test_shutdown_no_items (self ):
149150 self .hook .shutdown ()
150151
152+ @skipIf (
153+ python_implementation ().lower () == "pypy" , "fails randomly on pypy: https://github.com/open-telemetry/opentelemetry-python-contrib/issues/3812"
154+ )
151155 def test_upload_then_shutdown (self ):
152156 self .hook .on_completion (
153157 inputs = FAKE_INPUTS ,
You can’t perform that action at this time.
0 commit comments