Fix gate_hook in rally-cue experimental job

Script gate_hook.sh from cue tree should be run in gate_hook
in order to properly configure cue service and install cue client.

Also turned of tempest tests for this job.

Change-Id: I4df9a0dd81307742fd824e4bf765e6374afc82ee
This commit is contained in:
Sergey Skripnick 2015-06-26 13:51:39 +03:00
parent 607241f4f4
commit 26a67bd455

View File

@ -394,12 +394,12 @@
export ENABLED_SERVICES=rally
export PYTHONUNBUFFERED=true
export DEVSTACK_GATE_TIMEOUT=100
export DEVSTACK_GATE_INSTALL_TESTONLY=1
export DEVSTACK_GATE_TEMPEST=1
export DEVSTACK_GATE_TEMPEST_NOTESTS=1
export DEVSTACK_GATE_TEMPEST=0
export DEVSTACK_GATE_EXERCISES=0
export PROJECTS="stackforge/cue stackforge/python-cueclient $PROJECTS"
function pre_test_hook {
# Install cue-devstack integration
cd /opt/stack/new/cue/tests
./pre_test_hook.sh rabbitmq
# Install rally-devstack integration
@ -407,6 +407,12 @@
}
export -f pre_test_hook
function gate_hook {
cd /opt/stack/new/cue/tests
./gate_hook.sh rabbitmq
}
export -f gate_hook
function post_test_hook {
$BASE/new/rally/tests/ci/rally-gate.py
}