From 8ef0979700afc90634535b6991975ade639324d5 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 15 Dec 2016 21:26:53 +0900 Subject: [PATCH] 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 --- neutron/tests/contrib/gate_hook.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/neutron/tests/contrib/gate_hook.sh b/neutron/tests/contrib/gate_hook.sh index 90bb05d7100..e2f33f5122b 100644 --- a/neutron/tests/contrib/gate_hook.sh +++ b/neutron/tests/contrib/gate_hook.sh @@ -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