Skip to content

Commit 20bbd7d

Browse files
committed
Fix Makefile: use python -m instead of direct CLI calls
- Change 'clima-mcp test' to 'python -m weather_mcp.cli test' - Change 'clima-mcp run' to 'python -m weather_mcp.cli run' - Ensures commands work without relying on CLI being in PATH - Commands now work consistently in virtual environment
1 parent 5c2f2fa commit 20bbd7d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ clean:
7575

7676
# Application commands
7777
run-test:
78-
clima-mcp test
78+
python -m weather_mcp.cli test
7979

8080
run:
81-
clima-mcp run
81+
python -m weather_mcp.cli run
8282

8383
# CI/CD friendly commands
8484
ci-test: install-dev lint format-check type-check test coverage

0 commit comments

Comments
 (0)