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