forked from importers/git-importer
8 lines
139 B
Makefile
8 lines
139 B
Makefile
all:
|
|
isort *.py lib/*py tests/*py
|
|
autoflake -r --in-place --remove-unused-variables .
|
|
black .
|
|
|
|
test:
|
|
python3 -m unittest -v tests/*.py
|