8 lines
122 B
Makefile
8 lines
122 B
Makefile
all:
|
|
isort -rc .
|
|
autoflake -r --in-place --remove-unused-variables .
|
|
black .
|
|
|
|
test:
|
|
python3 -m unittest -v tests/*.py
|