jekyll-to-hugo/Makefile

6 lines
111 B
Makefile
Raw Normal View History

2023-05-29 18:35:38 +00:00
# Formats the code
format:
2023-05-31 15:32:42 +00:00
autoflake --exclude venv -ri . && black . && isort -r .
2023-05-29 18:35:38 +00:00
# Run tests
test:
pytest .