"official/vision/beta/dataloaders/utils_test.py" did not exist on "7fc086c3ae9c69320c44ca773a8ce4ab9a683b08"
Makefile 251 Bytes
Newer Older
luopl's avatar
init  
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 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/