Skip to content

Commit

Permalink
Add audit and devdeps to Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rmontanana committed Jan 11, 2022
1 parent f0b2ce3 commit 82838fa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/##/:/'`); \
Expand Down

0 comments on commit 82838fa

Please sign in to comment.