6 lines
77 B
Makefile
6 lines
77 B
Makefile
|
# Formats the code
|
||
|
format:
|
||
|
black . && isort -r .
|
||
|
# Run tests
|
||
|
test:
|
||
|
pytest .
|