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 a87d0b9 commit 584c87cCopy full SHA for 584c87c
Makefile
@@ -22,6 +22,6 @@ typecheck:
22
mypy src tests
23
24
# Run all checks required before pushing
25
-check: lint typecheck test
26
-fix: check format
+check: lint typecheck
+fix: format
27
all: format check coverage
tests/test_server.py
@@ -25,7 +25,7 @@
async def test_list_tools():
"""Test tool listing."""
tools: List[Tool] = await list_tools()
28
- assert len(tools) == 4
+ assert len(tools) == 5
29
30
# Verify GetTextFileContents tool
31
get_contents_tool = next(
0 commit comments