Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/system/test_apps/ai_agentic_test_app/bin/indexes.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@
output_schema=Output,
) as agent:
assert len(agent.tools) == 1, "Invalid tool count"
raise Exception(agent.tools[0].tags)
assert (

Check warning on line 63 in tests/system/test_apps/ai_agentic_test_app/bin/indexes.py

View workflow job for this annotation

GitHub Actions / lint-stage

Code is unreachable (reportUnreachable)
len([t for t in agent.tools if t.name == "splunk_get_indexes"]) == 1
), "splunk_get_indexes not present"

Expand Down
Loading