We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 446cf82 commit 0f24901Copy full SHA for 0f24901
tests/utilities/test_flow.py
@@ -65,7 +65,7 @@ def _flow_over_flow(messages: list[dict]) -> str:
65
return _random_string, _call_llm, _agent_call, _flow_over_flow
66
67
68
-@pytest.mark.flaky(retries=3, delay=5)
+@pytest.mark.flaky(retries=3, delay=10)
69
def test_decorators_without_flow(
70
opentelemetry_hl_test_configuration: tuple[Tracer, InMemorySpanExporter],
71
):
@@ -89,7 +89,7 @@ def test_decorators_without_flow(
89
# WHEN exporting the spans
90
# Wait for the prompt span to be exported; It was waiting
91
# on the OpenAI call span to finish first
92
- time.sleep(3)
+ time.sleep(5)
93
spans = exporter.get_finished_spans()
94
95
# THEN 3 spans arrive at the exporter
0 commit comments