18 lines
373 B
Makefile
18 lines
373 B
Makefile
.PHONY: quality style test docs utils
|
|
|
|
check_dirs := examples src tests utils
|
|
|
|
# Check code quality of the source code
|
|
quality:
|
|
ruff check $(check_dirs)
|
|
ruff format --check $(check_dirs)
|
|
python utils/check_tests_in_ci.py
|
|
|
|
# Format source code automatically
|
|
style:
|
|
ruff check $(check_dirs) --fix
|
|
ruff format $(check_dirs)
|
|
|
|
# Run smolagents tests
|
|
test:
|
|
pytest ./tests/
|