devdock4bit / Makefile
MachoMaheen's picture
Upload folder using huggingface_hub
bc55b34 verified
raw
history blame contribute delete
251 Bytes
.PHONY: quality style test
check_dirs := scripts src tests setup.py
quality:
ruff check $(check_dirs)
ruff format --check $(check_dirs)
style:
ruff check $(check_dirs) --fix
ruff format $(check_dirs)
test:
CUDA_VISIBLE_DEVICES= pytest tests/