Skip unit tests in bandit scan

no need to enforce security for unit tests, they are not being run in
production installations.

Change-Id: Ib03d5b4b9c14cbfd9dca9a97db883d989b93e654
This commit is contained in:
Pavlo Shchelokovskyy 2018-04-12 17:07:15 +03:00
parent 682cc92aa7
commit ec396082c9
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ deps =
commands =
flake8
# Run security linter
bandit -r oslo_privsep tests -n5 --skip B404,B603
bandit -r oslo_privsep -x tests -n5 --skip B404,B603
[testenv:venv]
commands = {posargs}