pass-gen/Makefile
2021-07-05 19:20:57 +02:00

19 lines
271 B
Makefile

.PHONY: lint
lint:
pipenv run black -l 99 .
pipenv run flake8 .
pipenv run mypy .
pipenv run vulture .
pipenv run bandit .
.PHONY: test
test:
pytest -v
.PHONY: cli
cli:
pipenv run python -m app.main
.PHONY: help
help:
pipenv run python -m app.main --help