Enable to set neutron's local repository for testing

This commit improves Ib8964fc029a2eab839c8022ad48ef40541e83780 .
You can specify 'NEUTRON_GIT_REPO' as an environmental value. In my
local env, a time for deploy reduced from 120s to 90s.

Ex. * Specify NEUTRON_GIT_REPO
        $ export NEUTRON_GIT_REPO=/path/to/neutron/repository
        $ tox -e py35 -r
    * Not to use local repository
        $ unset NEUTRON_GIT_REPO
        $ tox -e py35 -r

Change-Id: Ic1d727453038cb0112182c91a79a11ff0ec746f6
This commit is contained in:
Yushiro FURUKAWA 2017-05-26 21:09:32 +09:00
parent e73b214d73
commit 4d7e586de0
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ elif [ -x "$ZUUL_CLONER" ]; then
popd
else
echo "PIP HARDCODE" > /tmp/tox_install.txt
if [ -z "$NEUTRON_GIT_LOCATION" ]; then
if [ -z "$NEUTRON_GIT_REPO" ]; then
NEUTRON_GIT_REPO="https://git.openstack.org/openstack/neutron"
fi
SRC_DIR="$VIRTUAL_ENV/src/neutron"