Add audit and devdeps to Makefile

This commit is contained in:
2022-01-11 11:02:09 +01:00
parent f0b2ce3c7b
commit 82838fa3e0

View File

@@ -10,6 +10,9 @@ 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 stree
flake8 stree
@@ -32,6 +35,9 @@ build: ## Build package
doc-clean: ## Update documentation
make -C docs --makefile=Makefile clean
audit: ## Audit pip
pip-audit
help: ## Show help message
@IFS=$$'\n' ; \
help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/:/'`); \