From 9836919ac843f4a1cdf698e619253bacc035c73b Mon Sep 17 00:00:00 2001 From: "Erlon R. Cruz" Date: Tue, 6 Dec 2016 17:27:49 -0200 Subject: [PATCH] Run Cinder in-tree tests: devstack-plugin-nfs-nv We want to run Cinder in-tree tests additionally to the one already in tempest tree. This commit changes the gate-tempest-dsvm-full-devstack-plugin-nfs-nv job to do so. Change-Id: Ifffcd94bec27ea155083311e581879937695fa11 --- 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 215b6f427b..8e4325b40d 100644 --- a/jenkins/jobs/devstack-gate.yaml +++ b/jenkins/jobs/devstack-gate.yaml @@ -1681,7 +1681,11 @@ #!/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 PROJECTS="{plugin-repo} $PROJECTS" export DEVSTACK_LOCAL_CONFIG="enable_plugin devstack-plugin-{plugin} git://git.openstack.org/{plugin-repo}"