mirror of
https://github.com/rjNemo/pass-gen
synced 2026-06-06 02:26:42 +00:00
16 lines
213 B
Makefile
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
|
|
|