Skip to content

Commit

Permalink
Merge pull request #439 from freedomofpress/bandit-fix
Browse files Browse the repository at this point in the history
unpin bandit
  • Loading branch information
redshiftzero authored Jun 26, 2019
2 parents 207e0cb + 835ec57 commit 8bed8cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ safety: ## Runs `safety check` to check python dependencies for vulnerabilities
.PHONY: bandit
bandit: ## Run bandit with medium level excluding test-related folders
pip install --upgrade pip && \
pip install --upgrade bandit==1.5.1 && \
bandit -ll --recursive . --exclude tests,.venv
pip install --upgrade bandit && \
bandit -ll --recursive . --exclude ./tests,./.venv

.PHONY: check
check: clean lint mypy test ## Run the full CI test suite
Expand Down

0 comments on commit 8bed8cb

Please sign in to comment.