trailbase/client/python/Makefile
2026-03-27 09:49:37 +01:00

13 lines
189 B
Makefile

format:
poetry run black trailbase tests
check:
poetry run pyright && poetry run flake8
test:
poetry run pytest -s
publish:
poetry publish --build
.PHONY: format check test publish