Ensure that pip/setuptools/wheel python wheels are built

All virtualenvs make use of pip/setuptools/wheel, but none of
them specify that these wheels need to be built and therefore
every venv build process reaches out to pypi to fetch them.

To ensure that the repo container has these built as wheels,
we set the utility container to build them so that these
packages will be available for other venvs to use.

Change-Id: I60f851e1ffa401c92221de14651502306e9b0581
This commit is contained in:
Jesse Pretorius
2019-04-17 12:09:46 +01:00
parent dc5729ad6f
commit bd69ca0b8a

View File

@@ -41,7 +41,10 @@ utility_distro_openstack_clients_packages:
# Python packages to be installed into the utility container
utility_pip_packages:
- cryptography
- pip
- python-memcached
- setuptools
- wheel
# Determines whether Cinder backup should be tested
cinder_service_backup_program_enabled: "{{ hostvars['localhost']['cinder_service_backup_program_enabled'] }}"