From 790d6b31daf7acb4c752af698b8a1cefc70f7338 Mon Sep 17 00:00:00 2001 From: John Garbutt Date: Fri, 16 Oct 2015 11:59:37 +0100 Subject: [PATCH] Add tempest-dsvm-lxc-rc This is the test exclusion list that will be used by the new *tempest-dvsm-lxc job. Co-Authored-By: Matt Riedemann Change-Id: Ic7ad85958ef0ef6576a868b9c4485868523c8e52 --- devstack/tempest-dsvm-lxc-rc | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 devstack/tempest-dsvm-lxc-rc diff --git a/devstack/tempest-dsvm-lxc-rc b/devstack/tempest-dsvm-lxc-rc new file mode 100644 index 000000000000..9ed53b3d538f --- /dev/null +++ b/devstack/tempest-dsvm-lxc-rc @@ -0,0 +1,36 @@ +# Licensed under the Apache License, Version 2.0 (the "License"); you may +# not use this file except in compliance with the License. You may obtain +# a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. + +# +# This script is executed in the OpenStack CI *tempest-dsvm-lxc job. +# It's used to configure which tempest tests actually get run. You can find +# the CI job configuration here: +# +# http://git.openstack.org/cgit/openstack-infra/project-config/tree/jenkins/jobs/devstack-gate.yaml +# + +# Construct a regex to use when limiting scope of tempest +# to avoid features unsupported by Nova's LXC support. + +# Note that several tests are disabled by the use of tempest +# feature toggles in devstack/lib/tempest for an lxc config, +# so this regex is not entirely representative of what's excluded. + +# When adding entries to the regex, add a comment explaining why +# since this list should not grow. + +r="^(?!.*" +r="$r(?:.*\[.*\bslow\b.*\])" +r="$r|(?:tempest\.api\.compute\.servers\.test_delete_server\.DeleteServersTestJSON*)" +r="$r).*$" + +export DEVSTACK_GATE_TEMPEST_REGEX="$r"