Skip to content

Commit fa71f76

Browse files
committed
Try again
1 parent 8133635 commit fa71f76

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

opentelemetry-sdk/tests/shared_internal/test_batch_processor.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import time
1919
import unittest
2020
from concurrent.futures import ThreadPoolExecutor
21-
from platform import python_implementation, system
21+
from platform import python_implementation
2222
from sys import version_info
2323
from 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()

0 commit comments

Comments
 (0)