From 42bcae97368f078925138679f1cff037eb0222da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Tue, 11 Jan 2022 12:52:36 +0100 Subject: [PATCH] Add audit and devdeps to Makefile --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index d30017d..ce4af08 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,17 @@ coverage: ## Run tests with coverage deps: ## Install dependencies pip install -r requirements.txt +devdeps: ## Install development dependencies + pip install black pip-audit flake8 mypy coverage + lint: ## Lint and static-check black odte flake8 odte mypy odte --exclude tests +audit: ## Audit pip + pip-audit + push: ## Push code with tags git push && git push --tags