From 660ff12d1452062e706ad5fd778be8175c9eb7f8 Mon Sep 17 00:00:00 2001 From: "Erlon R. Cruz" Date: Tue, 6 Dec 2016 18:13:30 -0200 Subject: [PATCH] Run Cinder in-tree tests: full-lio We want to run Cinder in-tree tests additionally to the one already in tempest tree. This commit changes the gate-tempest-dsvm-full-lio job to do so. Change-Id: Iae9733cf17f9ca04f70a953f9bed0f91f1972a6f --- jenkins/jobs/devstack-gate.yaml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/jenkins/jobs/devstack-gate.yaml b/jenkins/jobs/devstack-gate.yaml index e24615c657..c4f1bcfbc5 100644 --- a/jenkins/jobs/devstack-gate.yaml +++ b/jenkins/jobs/devstack-gate.yaml @@ -2008,7 +2008,12 @@ #!/bin/bash -xe export PYTHONUNBUFFERED=true export DEVSTACK_GATE_TEMPEST=1 - export DEVSTACK_GATE_TEMPEST_FULL=1 + export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1 + # As we are setting DEVSTACK_GATE_TEMPEST_ALL_PLUGINS, we need to add + # the regex to limit the tests to the same as a tempest -efull would + # run. + export DEVSTACK_GATE_TEMPEST_REGEX='(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario)|(^cinder\.tests.tempest))' + export DEVSTACK_LOCAL_CONFIG="CINDER_ISCSI_HELPER=lioadm" export DEVSTACK_LOCAL_CONFIG+=$'\n'"CINDER_LVM_TYPE=thin" export BRANCH_OVERRIDE={branch-override} @@ -2081,7 +2086,12 @@ export PROJECTS="openstack/{name} $PROJECTS" export PYTHONUNBUFFERED=true export DEVSTACK_GATE_TEMPEST=1 - export DEVSTACK_GATE_TEMPEST_FULL=1 + export DEVSTACK_GATE_TEMPEST_ALL_PLUGINS=1 + # As we are setting DEVSTACK_GATE_TEMPEST_ALL_PLUGINS, we need to add + # the regex to limit the tests to the same as a tempest -efull would + # run. + export DEVSTACK_GATE_TEMPEST_REGEX='(?!.*\[.*\bslow\b.*\])(^tempest\.(api|scenario)|(^cinder\.tests.tempest))' + export DEVSTACK_LOCAL_CONFIG="CINDER_ISCSI_HELPER=lioadm" export DEVSTACK_LOCAL_CONFIG+=$'\n'"CINDER_LVM_TYPE=thin" export BRANCH_OVERRIDE={branch-override}