X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=tox.ini;h=8bbf1fc31b2bd855fa430a2f2301eb7b769a2c3e;hb=1bc097aa957e560147b4d9af49d25e69a6692702;hp=305378c65ea2f6084d924ab447724ed3aea6427a;hpb=961f572383ff3398bcafc802682b92f23f8ab1fe;p=vvp%2Fvalidation-scripts.git diff --git a/tox.ini b/tox.ini index 305378c..8bbf1fc 100644 --- a/tox.ini +++ b/tox.ini @@ -35,7 +35,6 @@ # # ============LICENSE_END============================================ # -# ECOMP is a trademark and service mark of AT&T Intellectual Property. # [tox] @@ -43,19 +42,26 @@ skipsdist=True envlist = py36 [testenv] +whitelist_externals = + install_win_deps.py +passenv = + http_proxy + https_proxy distribute = False commands = - {envpython} --version + python install_win_deps.py + pip install -r requirements.txt + {envpython} --version pytest --version coverage run --module pytest ice_validator/tests --self-test -rxXs coverage xml flake8 --version flake8 ice_validator -deps = --no-use-pep517 - -rrequirements.txt - flake8==3.6.0 - coverage==4.5.1 - + bandit -c bandit.yaml -r . -x ./.tox/**,./venv-tox/** +deps = --no-use-pep517 + flake8 + coverage + bandit [flake8] ignore = W391, W503, E501