From db4eef59e53931413c6680abde2cb2f491d1de53 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 25 Jul 2014 11:47:45 -0400 Subject: 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 --- integration-tests/neutronclient-stable.sh | 2 +- integration-tests/openstackclient-stable.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/integration-tests/neutronclient-stable.sh b/integration-tests/neutronclient-stable.sh index 4e066db..6c5ad56 100755 --- a/integration-tests/neutronclient-stable.sh +++ b/integration-tests/neutronclient-stable.sh @@ -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/ diff --git a/integration-tests/openstackclient-stable.sh b/integration-tests/openstackclient-stable.sh index e2e29cb..af703df 100755 --- a/integration-tests/openstackclient-stable.sh +++ b/integration-tests/openstackclient-stable.sh @@ -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/ -- cgit v1.2.1