File size: 326 Bytes
9e16e32
 
 
 
 
 
 
3ebb4d8
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: lint
lint: ## run tests with poetry (isort, black, pflake8, mypy)
	poetry run black src
	poetry run isort src
	poetry run pflake8 src
	poetry run mypy src --explicit-package-bases

.PHONY: test
test: ## run tests with poetry
	poetry run pytest tests/

.PHONY: run
run: ## run the application
	poetry run python app.py