summaryrefslogtreecommitdiff
path: root/devstack
diff options
context:
space:
mode:
authorMatt Riedemann <mriedem.os@gmail.com>2018-01-30 11:18:19 -0500
committerMatt Riedemann <mriedem.os@gmail.com>2018-01-30 11:18:19 -0500
commite88688db5e1f08c55015327f07143ee57547362c (patch)
tree17fe751eb901dcce95b06c6c3b35003b0227cde0 /devstack
parent91f7a999988b3f857d738d39984117e6c514cbec (diff)
downloadnova-e88688db5e1f08c55015327f07143ee57547362c.tar.gz
Remove unused tempest-dsvm-lxc-rc
This is no longer used since I94e2898914accea0e973db3788370d70402e75a7. Change-Id: I3206103a861e38c69c472d41b243f947c5910b0f
Diffstat (limited to 'devstack')
-rw-r--r--devstack/tempest-dsvm-lxc-rc50
1 files changed, 0 insertions, 50 deletions
diff --git a/devstack/tempest-dsvm-lxc-rc b/devstack/tempest-dsvm-lxc-rc
deleted file mode 100644
index 6b2820684f..0000000000
--- a/devstack/tempest-dsvm-lxc-rc
+++ /dev/null
@@ -1,50 +0,0 @@
-# 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.*\])"
-
-# NOTE(thomasem): Skipping these tests due to Ubuntu bug:
-# https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1536280.
-# These exclusions should be able to be removed once that bug is addressed.
-r="$r|(?:tempest\.api\.compute\.servers\.test_server_personality\.ServerPersonalityTestJSON\.test_rebuild_server_with_personality)"
-r="$r|(?:tempest\.api\.compute\.admin\.test_servers\.ServersAdminTestJSON\.test_rebuild_server_in_error_state)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_list_server_filters\.ListServerFiltersTestJSON\.test_list_servers_filter_by_shutoff_status)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_server_actions\.ServerActionsTestJSON\.test_lock_unlock_server)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_server_actions\.ServerActionsTestJSON\.test_rebuild_server)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_server_actions\.ServerActionsTestJSON\.test_rebuild_server_in_stop_state)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_server_actions\.ServerActionsTestJSON\.test_stop_start_server)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_server_actions\.ServerActionsTestJSON\.test_get_console_output_server_id_in_shutoff_status)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_servers\.ServersTestJSON\.test_update_server_name_in_stop_state)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_disk_config\.ServerDiskConfigTestJSON*)"
-r="$r|(?:tempest\.api\.compute\.servers\.test_delete_server\.DeleteServersTestJSON*)"
-r="$r).*$"
-
-export DEVSTACK_GATE_TEMPEST_REGEX="$r"