13 lines
No EOL
154 B
Makefile
13 lines
No EOL
154 B
Makefile
all: test typehint lint black
|
|
|
|
test:
|
|
pytest
|
|
|
|
typehint:
|
|
mypy --ignore-missing-imports stacosys/
|
|
|
|
lint:
|
|
pylint stacosys/
|
|
|
|
black:
|
|
black -l 79 stacosys/
|