gate_hook: Add a no-op rally case

This is the first step of the following plan:

    1. make neutron's gate_hook accept "rally" but do nothing.
    2. make project-config change to consume the gate_hook
    3. make the rest of neutron change

Partial-Bug: #1643451
Change-Id: I0a309272ec46b8477fe57eeb676a5cd850e4d60b
This commit is contained in:
YAMAMOTO Takashi 2016-12-15 21:26:53 +09:00
parent 920ddeaf58
commit 8ef0979700
1 changed files with 6 additions and 0 deletions

View File

@ -76,6 +76,12 @@ case $VENV in
$BASE/new/devstack-gate/devstack-vm-gate.sh
;;
"rally")
# NOTE(yamamoto): This is a no-op placeholder to allow
# further changes.
$BASE/new/devstack-gate/devstack-vm-gate.sh
;;
*)
echo "Unrecognized environment $VENV".
exit 1