Skip to content
Merged
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
16 changes: 8 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@

test:
test: install
uv run --frozen --all-extras --all-groups pytest ./tests --verbose --color=yes --durations=10

test-coverage:
test-coverage: install
uv run --frozen --all-extras --all-groups pytest ./tests --cov . --cov-branch --cov-report html --cov-config=.coveragerc --verbose --color=yes --durations=10

ruff-lint-fix:
ruff-lint-fix: install
uv run --frozen --all-extras --all-groups ruff check . --fix
ruff-lint-check:
ruff-lint-check: install
uv run --frozen --all-extras --all-groups ruff check .

ruff-format-fix:
ruff-format-fix: install
uv run --frozen --all-extras --all-groups ruff format .
ruff-format-check:
ruff-format-check: install
uv run --frozen --all-extras --all-groups ruff format . --check

mypy-check:
mypy-check: install
uv run --frozen --all-extras --all-groups mypy ./mcpunk
uv run --frozen --all-extras --all-groups mypy ./tests

pre-commit-check:
pre-commit-check: install
uv run --frozen --all-extras --all-groups pre-commit run --all-files

lint-check: ruff-lint-check ruff-format-check mypy-check pre-commit-check
Expand Down