mirror of
https://github.com/rjNemo/pass-gen
synced 2026-06-06 02:26:42 +00:00
19 lines
328 B
Makefile
19 lines
328 B
Makefile
.PHONY: lint
|
|
lint:
|
|
pipenv run black -l 99 .
|
|
pipenv run flake8 .
|
|
pipenv run mypy .
|
|
# pipenv run vulture .
|
|
pipenv run bandit -r --exclude=test .
|
|
|
|
.PHONY: test
|
|
test:
|
|
pipenv run pytest -v --cov=. --cov-report=html
|
|
|
|
.PHONY: cli
|
|
cli:
|
|
pipenv run python -m app.main
|
|
|
|
.PHONY: help
|
|
help:
|
|
pipenv run python -m app.main --help
|