pass-gen/Makefile
2021-07-05 18:46:05 +02:00

16 lines
213 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 app/main.py