File size: 195 Bytes
fbc21be
f04fb69
fbc21be
206371d
 
 
 
 
 
 
 
 
fbc21be
 
206371d
 
 
fbc21be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ui:
	poetry run streamlit run app.py

isort:
	./bin/run-isort.sh

flake8:
	./bin/run-flake8.sh

black:
	./bin/run-black.sh

tidy: isort black flake8

test:
	poetry run pytest

prepare: tidy test