We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebc468d commit 8b0da83Copy full SHA for 8b0da83
1 file changed
tests/lib/core/harness/test_tracer.py
@@ -1,3 +1,5 @@
1
+from typing import override
2
+
3
import pytest
4
5
from agentex.lib.core.harness.types import OpenSpan, CloseSpan
@@ -45,6 +47,7 @@ async def test_no_trace_id_is_noop():
45
47
@pytest.mark.asyncio
46
48
async def test_tracing_failure_is_swallowed():
49
class _Boom(_FakeTracing):
50
+ @override
51
async def start_span(self, **kw):
52
raise RuntimeError("backend down")
53
0 commit comments