mle-bench-tabular / Makefile
sunmarinup
Account for git LFS
ab2d497
raw
history blame
223 Bytes
.PHONY: style format
style:
python -m black --line-length 119 .
python -m isort .
ruff check --fix .
quality:
python -m black --check --line-length 119 .
python -m isort --check-only .
ruff check .
test:
pytest