Also run bandit during py3 unit tests

This commit is contained in:
Brendan Reilly
2022-03-22 13:55:27 -04:00
parent 24e1efd394
commit 3c0c7d3029
2 changed files with 3 additions and 3 deletions

View File

@@ -22,4 +22,4 @@ sed -i \
# Since tox seems to ignore `usedevelop` when we have `sitepackages` on, we have to run it manually
python3 setup.py develop --no-deps
/usr/bin/tox -e flake8,py3,intflake "$@"
/usr/bin/tox -e flake8,py3,intflake,bandit "$@"

View File

@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = flake8, intflake, py27, py3
envlist = flake8, intflake, py27, py3, bandit
[flake8]
ignore = E731,W503
@@ -57,7 +57,7 @@ deps = flake8
commands = flake8 tests/integration
[testenv:bandit]
basepython = python2
basepython = python3
skip_install = true
deps = bandit
commands =