mirror of
https://github.com/tgorordo/carousel.git
synced 2026-06-12 20:42:13 -07:00
20 lines
253 B
Makefile
20 lines
253 B
Makefile
run:
|
|
uv run carousel
|
|
|
|
check:
|
|
uv run pyright src
|
|
|
|
test:
|
|
uv run pytest -vv --tb=short
|
|
|
|
format:
|
|
uv run ruff format src test
|
|
|
|
clean:
|
|
uv run pyclean src test
|
|
uv run ruff clean
|
|
rm -rf .pytest_cache .hypothesis
|
|
|
|
wipe:
|
|
just clean
|
|
rm -rf .venv
|