From: Loic Dachary Date: Wed, 10 Jun 2015 19:00:42 +0000 (+0200) Subject: tests: ceph-disk tests need to install pip > 6.1 X-Git-Tag: v9.0.3~202^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=1e77fcfd98ab7c04f6f21e31b3d9333293a0aa64;p=ceph.git 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 --- diff --git a/src/test/ceph-disk.sh b/src/test/ceph-disk.sh index 9ae6de7fada9..ce00e948f7b6 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