Do not allow wheels for stable tests

The tests against stable versions of consuming projects download the
release packages from the PyPI mirror. Now that there are wheels
available, installing those packages breaks. Rather than completely
rewrite the test scripts, force the sdist to be downloaded.

Change-Id: I574610b934a40aa4e4c017d1f247cc14b81a8160
This commit is contained in:
Doug Hellmann 2014-07-25 11:47:45 -04:00
parent 8b3de54922
commit db4eef59e5
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ envdir=$1
# Manually download the source from PyPI and build it with the --editable flag.
# This gives us access to run the tests.
pip install --pre --no-deps --no-install --no-clean python-neutronclient
pip install --pre --no-deps --no-install --no-clean --no-use-wheel python-neutronclient
# This is where the source will end up after pip is done downloading and building it
srcdir=$envdir/build/python-neutronclient/

View File

@ -6,7 +6,7 @@ envdir=$1
# Manually download the source from PyPI and build it with the --editable flag.
# This gives us access to run the tests.
pip install --pre --no-deps --no-install --no-clean python-openstackclient
pip install --pre --no-deps --no-install --no-clean --no-use-wheel python-openstackclient
# This is where the source will end up after pip is done downloading and building it
srcdir=$envdir/build/python-openstackclient/