diff options
author | steven stark <steven.stark@att.com> | 2019-07-24 19:06:47 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-24 19:06:47 +0000 |
commit | 107d6b6a59ba8bc012f35a073e609b53b2ce05e7 (patch) | |
tree | ed625a9efe12e7e048947656dafc3314a2e8c3c8 /tox.ini | |
parent | 1f02c5a5f2bbddfa375e44bc1d93e435d501f4ee (diff) | |
parent | f6e9ca272583650752cf22915ba34a745d206113 (diff) |
Merge "[VVP] Tox support for installing Win pre-built libraries"
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -42,22 +42,27 @@ 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 bandit -c bandit.yaml -r . -x ./.tox/**,./venv-tox/** -deps = --no-use-pep517 - -rrequirements.txt +deps = --no-use-pep517 flake8 coverage bandit - [flake8] ignore = W391, W503, E501 max-line-length = 88 |