Get rid of PyPI URL override in integration test

* tools/integration.sh: Overriding the PyPI URL is logic best left
to devstack-gate since it does those things already. Remove the
similar dance found here.

Change-Id: Ie2fcabb11b30dc3ab6564bdedd55b2b173c1bf2a
This commit is contained in:
Jeremy Stanley 2013-10-07 23:31:27 +00:00
parent 9f04dba0ec
commit 42b49cbad0
1 changed files with 0 additions and 15 deletions

View File

@ -63,21 +63,6 @@ mirrors:
output: $pypidir
EOF
# Default to using pypi.openstack.org as an easy_install mirror
if [ "$1" == "--no-mirror" ] ; then
shift
else
cat <<EOF > ~/.pydistutils.cfg
[easy_install]
index_url = http://pypi.openstack.org/openstack
EOF
cat <<EOF > ~/.pip/pip.conf
[global]
index-url = http://pypi.openstack.org/openstack
log = $HOME/pip.log
EOF
fi
# PROJECTS is a list of projects that we're testing
PROJECTS=$*