kculculate / makefile
neoai-kterasawa
add makefile
3ebb4d8
raw
history blame contribute delete
326 Bytes
.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