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