huesoporro/Makefile
2024-12-03 15:47:22 +01:00

15 lines
287 B
Makefile

fmt:
uvx pre-commit run --all-files --color always
.PHONY: tests
tests:
uv run pytest --cov=halig -vv tests --report-log reportlog.json
uv run coverage html
uv run coverage xml
compile:
uv run pyinstaller markovbot.spec
clean-compile:
uv run pyinstaller markovbot.spec --clean