Makefile 242 Bytes
Newer Older
chenych's avatar
chenych committed
1
.PHONY: quality style test
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
2
3
4
5
6
7
8
9
10
11

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)
chenych's avatar
chenych committed
12
13
14

test:
	CUDA_VISIBLE_DEVICES= pytest tests/