Makefile 251 Bytes
Newer Older
chenych's avatar
chenych committed
1
.PHONY: quality style test
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
2

luopl's avatar
luopl committed
3
check_dirs := scripts src tests setup.py
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
4
5
6
7
8
9
10
11

quality:
	ruff check $(check_dirs)
	ruff format --check $(check_dirs)

style:
	ruff check $(check_dirs) --fix
	ruff format $(check_dirs)
chenych's avatar
chenych committed
12
13
14

test:
	CUDA_VISIBLE_DEVICES= pytest tests/