From 1e77fcfd98ab7c04f6f21e31b3d9333293a0aa64 Mon Sep 17 00:00:00 2001 From: Loic Dachary Date: Wed, 10 Jun 2015 21:00:42 +0200 Subject: [PATCH] tests: ceph-disk tests need to install pip > 6.1 Otherwise it will not be able to use the wheelhouse. http://tracker.ceph.com/issues/11952 Fixes: #11952 Signed-off-by: Loic Dachary --- src/test/ceph-disk.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/ceph-disk.sh b/src/test/ceph-disk.sh index 9ae6de7fada9c..ce00e948f7b63 100755 --- a/src/test/ceph-disk.sh +++ b/src/test/ceph-disk.sh @@ -24,6 +24,9 @@ DIR=test-ceph-disk virtualenv virtualenv-$DIR . virtualenv-$DIR/bin/activate ( + # older versions of pip will not install wrap_console scripts + # when using wheel packages + pip install --upgrade 'pip >= 6.1' if test -d ceph-detect-init/wheelhouse ; then wheelhouse="--no-index --use-wheel --find-links=ceph-detect-init/wheelhouse" fi -- 2.39.5