Just use the pip from the virtualenv

There is only one python, so there is only one pip.

Change-Id: I31bc5a7bad603f3f58a3d2ac1501271935830cdd
This commit is contained in:
Monty Taylor 2020-02-12 16:47:57 -06:00
parent 51a074c302
commit baa4cd731e
1 changed files with 2 additions and 2 deletions

View File

@ -505,8 +505,8 @@ virtualenv -p python${PYTHON_VER} /tmp/ansible
# Explicitly install pbr first as this will use pip rathat than
# easy_install. Hope is this is generally more reliable.
/tmp/ansible/bin/${PIP} install pbr
/tmp/ansible/bin/${PIP} install ansible==$ANSIBLE_VERSION \
/tmp/ansible/bin/pip install pbr
/tmp/ansible/bin/pip install ansible==$ANSIBLE_VERSION \
devstack-tools==$DSTOOLS_VERSION 'ara<1.0.0' 'cmd2<0.9.0'
export ANSIBLE=/tmp/ansible/bin/ansible
export ANSIBLE_PLAYBOOK=/tmp/ansible/bin/ansible-playbook