Skip to content

Commit

Permalink
Skip test case when running in Windows or Pypy
Browse files Browse the repository at this point in the history
Fixes #3985
  • Loading branch information
ocelotl committed Jun 20, 2024
1 parent 0049052 commit 01e2a29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opentelemetry-sdk/tests/trace/export/test_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 01e2a29

Please sign in to comment.