"official/utils/logs/logger.py" did not exist on "57bc50c5fb05f5ffc3596ced6974c5d7fc7f3368"
Makefile 242 Bytes
Newer Older
luopl's avatar
luopl committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.PHONY: quality style test

check_dirs := scripts src tests

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/