File size: 385 Bytes
cb5b71d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
black:
	black \
		--line-length 88 \
		--preview \
	.

isort:
	isort \
		--profile google \
		--line-length 88 \
		--use-parentheses \
		--project mlcroissant \
		--project components \
		--project core \
		--project events \
		--project views \
		--project state \
		--project utils \
		--multi-line 3 \
		--thirdparty datasets \
	.

format: black isort

pytest:
	PYTHONPATH=. pytest