File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
opentelemetry-sdk/tests/shared_internal Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1818import time
1919import unittest
2020from concurrent .futures import ThreadPoolExecutor
21- from platform import python_implementation , system
21+ from platform import python_implementation
2222from sys import version_info
2323from unittest .mock import Mock
2424
@@ -128,10 +128,8 @@ def test_force_flush_flushes_telemetry(
128128 exporter .export .assert_called_once_with ([telemetry for _ in range (10 )])
129129
130130 @mark .skipif (
131- python_implementation () == "PyPy"
132- and (system () == "Windows" or system () == "Ubuntu" )
133- and version_info < (3 , 9 ),
134- reason = "This test randomly fails with on PyPy3.8 Windows/Ubuntu." ,
131+ python_implementation () == "PyPy" and version_info < (3 , 9 ),
132+ reason = "This test randomly fails with on PyPy3.8." ,
135133 )
136134 def test_with_multiple_threads (self , batch_processor_class , telemetry ):
137135 exporter = Mock ()
You can’t perform that action at this time.
0 commit comments