Spaces:
AIR-Bench
/
Running on CPU Upgrade

File size: 239 Bytes
f766ce9
 
 
 
 
 
 
 
 
 
 
 
 
6b461df
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: style format


style:
	python -m black --line-length 119 .
	python -m isort .
	ruff check --fix .


quality:
	python -m black --check --line-length 119 .
	python -m isort --check-only .
	ruff check .


test:
	python -m pytest tests