26 lines
352 B
Makefile
26 lines
352 B
Makefile
lint:
|
|
uv run ruff check --fix .
|
|
uv run ruff format .
|
|
|
|
typecheck:
|
|
uvx ty check
|
|
|
|
test:
|
|
uv run pytest
|
|
|
|
test-fast:
|
|
uv run pytest --testmon
|
|
|
|
test-parallel:
|
|
uv run pytest -n auto
|
|
|
|
check: lint typecheck test
|
|
|
|
run:
|
|
uv run python -m mudlib
|
|
|
|
debug:
|
|
uv run python -m mudlib --debug
|
|
|
|
render:
|
|
uv run python scripts/render_map.py
|