We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7969654 commit a9f9eefCopy full SHA for a9f9eef
1 file changed
util/opentelemetry-util-genai/tests/test_utils.py
@@ -757,6 +757,7 @@ def test_get_tool_call_span_name(self):
757
_get_tool_call_span_name(tool_no_name), "execute_tool"
758
)
759
760
+ # pylint: disable=no-self-use
761
def test_apply_tool_call_attributes_minimal(self):
762
"""Test applying minimal tool call attributes"""
763
span = Mock()
@@ -771,6 +772,7 @@ def test_apply_tool_call_attributes_minimal(self):
771
772
# Check recommended attribute
773
span.set_attribute.assert_any_call(GenAI.GEN_AI_TOOL_NAME, "test_tool")
774
775
776
def test_apply_tool_call_attributes_with_error(self):
777
"""Test applying attributes when error present"""
778
0 commit comments