14 lines
No EOL
196 B
Makefile
14 lines
No EOL
196 B
Makefile
all: test typehint lint black
|
|
|
|
test:
|
|
pytest
|
|
|
|
typehint:
|
|
mypy --ignore-missing-imports stacosys/
|
|
|
|
lint:
|
|
pylint stacosys/
|
|
|
|
black:
|
|
isort --multi-line 3 --profile black stacosys/
|
|
black stacosys/
|