stacosys/Makefile

16 lines
253 B
Makefile
Raw Normal View History

2022-11-20 16:38:58 +01:00
all: black test typehint lint
black:
poetry run isort --multi-line 3 --profile black stacosys/
poetry run black stacosys/
2022-11-19 20:40:15 +01:00
test:
poetry run pytest
2022-11-19 20:40:15 +01:00
typehint:
poetry run mypy --ignore-missing-imports stacosys/
2022-11-19 20:40:15 +01:00
lint:
poetry run pylint stacosys/
2022-11-19 20:40:15 +01:00