Ensure pip is installed

We need pip and virtualenv for molcule jobs. This was dropped recently
in the base image so we need to handle this ourselves.

Closes-Bug: #1883946
Change-Id: Ie5ba86c4d8aa97959d7336886536dc1439ce54bd
(cherry picked from commit 19ef86c627)
This commit is contained in:
Alex Schultz 2020-06-17 12:31:41 -06:00
parent ccd7be74f0
commit 4ca3bd9459
1 changed files with 6 additions and 0 deletions

View File

@ -18,10 +18,15 @@
path: "{{ ansible_user_dir }}/zuul-output/logs"
state: directory
- name: Ensure pip is available
include_role:
name: ensure-pip
- name: Setup bindep
pip:
name: "bindep"
virtualenv: "{{ ansible_user_dir }}/test-python"
virtualenv_command: "{{ ensure_pip_virtualenv_command }}"
virtualenv_site_packages: true
- name: Run bindep
@ -34,6 +39,7 @@
pip:
requirements: "{{ tripleo_ansible_project_path }}/molecule-requirements.txt"
virtualenv: "{{ ansible_user_dir }}/test-python"
virtualenv_command: "{{ ensure_pip_virtualenv_command }}"
virtualenv_site_packages: true
# NOTE(cloudnull): This is being done because docker is not supported on RHEL-8
# and tests within this repo still require docker.