stacosys/Makefile

17 lines
324 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
2022-11-29 15:51:34 +01:00
test:
poetry run coverage run -m --source=stacosys pytest
poetry run coverage report
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