summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug@doughellmann.com>2014-07-25 11:47:45 -0400
committerDoug Hellmann <doug@doughellmann.com>2014-07-25 11:48:56 -0400
commitdb4eef59e53931413c6680abde2cb2f491d1de53 (patch)
treecdf5bfe9db2c7ee0e0476d373af7c3a6bf96f22d
parent8b3de5492264604f141861eb2883f5fbcef6b4cc (diff)
downloadcliff-db4eef59e53931413c6680abde2cb2f491d1de53.tar.gz
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
-rwxr-xr-xintegration-tests/neutronclient-stable.sh2
-rwxr-xr-xintegration-tests/openstackclient-stable.sh2
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/