mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-21 21:47:55 +00:00
13 lines
189 B
Makefile
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
|