Add audit and devdeps to Makefile

This commit is contained in:
Ricardo Montañana Gómez 2022-01-11 12:52:36 +01:00
parent 2ebec2d588
commit 42bcae9736
Signed by: rmontanana
GPG Key ID: 46064262FD9A7ADE

View File

@ -10,11 +10,17 @@ coverage: ## Run tests with coverage
deps: ## Install dependencies deps: ## Install dependencies
pip install -r requirements.txt pip install -r requirements.txt
devdeps: ## Install development dependencies
pip install black pip-audit flake8 mypy coverage
lint: ## Lint and static-check lint: ## Lint and static-check
black odte black odte
flake8 odte flake8 odte
mypy odte --exclude tests mypy odte --exclude tests
audit: ## Audit pip
pip-audit
push: ## Push code with tags push: ## Push code with tags
git push && git push --tags git push && git push --tags