Skip to content

Commit 584c87c

Browse files
committed
chore(Makefile): update check and fix targets for better clarity and organization
test(test_server.py): update tool listing test to reflect the expected number of tools
1 parent a87d0b9 commit 584c87c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ typecheck:
2222
mypy src tests
2323

2424
# Run all checks required before pushing
25-
check: lint typecheck test
26-
fix: check format
25+
check: lint typecheck
26+
fix: format
2727
all: format check coverage

tests/test_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
async def test_list_tools():
2626
"""Test tool listing."""
2727
tools: List[Tool] = await list_tools()
28-
assert len(tools) == 4
28+
assert len(tools) == 5
2929

3030
# Verify GetTextFileContents tool
3131
get_contents_tool = next(

0 commit comments

Comments
 (0)