mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-01 11:12:50 +08:00
15 lines
251 B
Makefile
15 lines
251 B
Makefile
.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/
|