From 01e2a29eac9c5e0a3ca7f546ebc296254c5d09ab Mon Sep 17 00:00:00 2001 From: Diego Hurtado Date: Thu, 20 Jun 2024 15:34:59 -0600 Subject: [PATCH] Skip test case when running in Windows or Pypy Fixes #3985 --- opentelemetry-sdk/tests/trace/export/test_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentelemetry-sdk/tests/trace/export/test_export.py b/opentelemetry-sdk/tests/trace/export/test_export.py index 2ba76e9b41..52bc071204 100644 --- a/opentelemetry-sdk/tests/trace/export/test_export.py +++ b/opentelemetry-sdk/tests/trace/export/test_export.py @@ -462,7 +462,7 @@ def _target(): span_processor.shutdown() @mark.skipif( - python_implementation() == "PyPy" and system() == "Windows", + python_implementation() == "PyPy" or system() == "Windows", reason="This test randomly fails with huge delta in Windows with PyPy", ) def test_batch_span_processor_scheduled_delay(self):