Whitelist external mysql-connector-python req

Pip 1.5 changes how it deals with external packages:

http://www.python.org/dev/peps/pep-0438/

This is affecting OpenStack projects all over:

https://bugs.launchpad.net/openstack-ci/+bug/1266513

Applying this temporary fix for the mysql-connector-python
package.

Change-Id: I6f5a9f97a42336dc94c66b09ba81dd68bdab7803
This commit is contained in:
David Shrewsbury 2014-01-07 14:57:42 -05:00
parent 4b4bd96553
commit f35ddd0b1d
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ skipsdist = True
[testenv]
usedevelop = True
install_command = pip install -U {opts} {packages}
install_command = pip install --allow-external mysql-connector-python --allow-insecure -U {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'