the src-neutron-icehouse jobs should only run smoke tests

The neutron icehouse jobs did not get to the point where they could
actually reliably run the tempest full test suite. For the src jobs,
admit that, and use smoke only if we are testing stable/icehouse.

Change-Id: I76f28407d3599c64de646da99097a1860cb1e510
This commit is contained in:
Sean Dague 2014-11-26 12:25:53 -05:00
parent 1550ed36e3
commit 9f39f70af2

View File

@ -191,8 +191,12 @@
export DEVSTACK_GATE_TIMEOUT=120
export DEVSTACK_GATE_TEMPEST=1
export DEVSTACK_GATE_NEUTRON=1
export DEVSTACK_GATE_TEMPEST_FULL=1
export BRANCH_OVERRIDE={branch-override}
# neutron icehouse does not pass tempest full reliably
if [ "$BRANCH_OVERRIDE" != "stable/icehouse"] ; then
export DEVSTACK_GATE_TEMPEST_FULL=1
fi
if [ "$BRANCH_OVERRIDE" != "default" ] ; then
export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE
fi