Spaces:
AIR-Bench
/
Running on CPU Upgrade

leaderboard / Makefile
nan's picture
feat: update makefile
6b461df
raw
history blame
239 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:
python -m pytest tests