From fd2637113f332a2ad13b5cbc480d02a996c4787e Mon Sep 17 00:00:00 2001 From: Ethan Paul <24588726+enpaul@users.noreply.github.com> Date: Fri, 25 Sep 2020 01:03:31 -0400 Subject: [PATCH] Remove excessive bandit output from security checks --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 8f68577..89f3abd 100644 --- a/tox.ini +++ b/tox.ini @@ -57,6 +57,6 @@ deps = allowlist_externals = bash commands = - bandit --recursive {toxinidir}/tox_poetry_installer.py - bash -c "bandit --skip B101 {toxinidir}/tests/*.py" + bandit --quiet {toxinidir}/tox_poetry_installer.py + bash -c "bandit --quiet --skip B101 {toxinidir}/tests/*.py" bash -c "poetry export --format requirements.txt --without-hashes --dev | safety check --stdin --bare"