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