Update from upstream #11

Closed
soksanichenko wants to merge 158 commits from a8_updated into a8
1 changed files with 9 additions and 1 deletions
Showing only changes of commit e490764985 - Show all commits

10
tox.ini
View File

@ -1,5 +1,5 @@
[tox]
envlist = flake8, black, py27, py3
envlist = bandit, flake8, black, py27, py3
[testenv:flake8]
deps =
@ -8,6 +8,14 @@ whitelist_externals = sh
commands =
sh -c "flake8 pungi pungi_utils setup.py tests/*py"
[testenv:bandit]
basepython = python3
skip_install = true
deps = bandit
commands =
bandit -r -ll pungi pungi_utils
ignore_outcome = True
[testenv:black]
basepython = python3
whitelist_externals = sh