Install wheel in validate venv

During validation we need to build a bdist_wheel which is only available
as an extension when wheel is present in the environment. This adds
wheel and makes sure all requirements are installed for the validation
job.

Change-Id: Ied3b1ff4accf66e358cec4b209f4d3a65ae88d26
Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
This commit is contained in:
Sean McGinnis 2020-05-10 17:40:43 -05:00
parent 1bf550353a
commit b19a92adbe
No known key found for this signature in database
GPG Key ID: CE7EE4BFAF8D70C8
2 changed files with 3 additions and 1 deletions

View File

@ -18,6 +18,7 @@ tqdm
mwclient==0.8.1
jsonschema>=2.6.0
twine>=1.13.0
wheel>=0.34.2
ruamel.yaml>=0.15
# For release notes generation.

View File

@ -30,7 +30,8 @@ commands =
[testenv:validate]
deps =
yamllint==1.4.1
yamllint==1.4.1
-r{toxinidir}/requirements.txt
commands =
{toxinidir}/tools/tox-log-command.sh {toxinidir}/tools/run_yamllint.sh
{toxinidir}/tools/tox-log-command.sh check-schema {posargs}