Remove excessive bandit output from security checks

This commit is contained in:
Ethan Paul 2020-09-25 01:03:31 -04:00
parent b10e796ca1
commit fd2637113f
No known key found for this signature in database
GPG Key ID: C5F5542B54A4D9C6

View File

@ -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"