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 a65ce73 commit c31ad9fCopy full SHA for c31ad9f
instrumentation-genai/opentelemetry-instrumentation-vertexai/tests/test_function_calling_experimental.py
@@ -251,7 +251,8 @@ def test_tool_events_no_content(
251
252
253
def assert_fsspec_equal(path: str, value: Any) -> None:
254
- __tracebackhide__ = True
+ # Hide this function and its calls from traceback.
255
+ __tracebackhide__ = True # pylint: disable=unused-variable
256
with fsspec.open(path, "r") as file:
257
assert json.load(file) == value
258
0 commit comments