From 9f39f70af2fbb0d8c8b609cbb9fe851023f46c95 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Wed, 26 Nov 2014 12:25:53 -0500 Subject: [PATCH] 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 --- jenkins/jobs/devstack-gate.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jenkins/jobs/devstack-gate.yaml b/jenkins/jobs/devstack-gate.yaml index 5887908dcd..bb24afc204 100644 --- a/jenkins/jobs/devstack-gate.yaml +++ b/jenkins/jobs/devstack-gate.yaml @@ -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