2015-10-16 11:59:37 +01:00
|
|
|
# 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.*\])"
|
2016-01-14 11:25:35 -06:00
|
|
|
|
|
|
|
# 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*)"
|
2015-10-16 11:59:37 +01:00
|
|
|
r="$r|(?:tempest\.api\.compute\.servers\.test_delete_server\.DeleteServersTestJSON*)"
|
|
|
|
r="$r).*$"
|
|
|
|
|
|
|
|
export DEVSTACK_GATE_TEMPEST_REGEX="$r"
|