Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line numberDiff line numberDiff line change
Expand Up@@ -89,7 +89,7 @@ extend-exclude = '''
test = [
"aiohttp==3.10.11",
"behave==1.3.3",
"mcp>=1.1.0; python_version>='3.10'",
"mcp>=2,<3; python_version>='3.10'",
"pytest==8.3.5",
"pytest-httpx==0.35.0",
"pytest-env>=1.1.3",
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/features/steps/mcp_steps.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -35,7 +35,7 @@ async def logging_callback(params):
await session.initialize()
result = await session.call_tool(tool_name, args)
return {
"success": not result.isError,
"success": not result.is_error,
"content": result.content,
"result": result,
"captured_logs": captured_logs,
Expand Down
Loading
Loading