File size: 326 Bytes
2a0acbd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
.PHONY: quality style test docs
check_dirs := examples src tests
# Check code quality of the source code
quality:
ruff check $(check_dirs)
ruff format --check $(check_dirs)
# Format source code automatically
style:
ruff check $(check_dirs) --fix
ruff format $(check_dirs)
# Run smolagents tests
test:
pytest ./tests/ |