From: Kefu Chai Date: Fri, 30 Aug 2019 09:40:25 +0000 (+0800) Subject: script/run_tox.sh: install tox deps from wheelhouse X-Git-Tag: v15.1.0~1710^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=802aaaf14ca0141190a0a97f40f7a1ffc7d09389;p=ceph.git script/run_tox.sh: install tox deps from wheelhouse could be faster Signed-off-by: Kefu Chai --- diff --git a/src/script/run_tox.sh b/src/script/run_tox.sh index f0060690b520..14e3e641d940 100755 --- a/src/script/run_tox.sh +++ b/src/script/run_tox.sh @@ -128,7 +128,8 @@ function main() { # tox.ini will take care of this. export CEPH_BUILD_DIR=$build_dir - + # use the wheelhouse prepared by install-deps.sh + export PIP_FIND_LINKS="$tox_path/wheelhouse" tox -c $tox_path/tox.ini -e "$tox_envs" "$@" }