mirror of
https://github.com/trailbaseio/trailbase.git
synced 2026-05-19 15:59:28 -05:00
14 lines
189 B
Makefile
14 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
|