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 2ebec2d commit 42bcae9
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,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

Expand Down

0 comments on commit 42bcae9

Please sign in to comment.