Re-enable Mistral testing
This reverts commit 4d6b918cefaad43ef1c3d0ee018bca067b2cc5e2. It activates Mistral testing again, module one test that fails all the time: https://bugs.launchpad.net/mistral/+bug/1654555 Change-Id: I763fd9b13ba94d1e76682a7a1c4264d7507c922c
This commit is contained in:
parent
dbc4ab06f9
commit
76813468bd
@ -64,6 +64,7 @@ scenario](#all-in-one).
|
|||||||
| ironic | | X | | | |
|
| ironic | | X | | | |
|
||||||
| zaqar | | X | | | |
|
| zaqar | | X | | | |
|
||||||
| murano | | | X | | |
|
| murano | | | X | | |
|
||||||
|
| mistral | | | X | | |
|
||||||
| barbican | | X | | | |
|
| barbican | | X | | | |
|
||||||
| ceph | X | | | X | |
|
| ceph | X | | | X | |
|
||||||
| ceph rgw | | | | X | |
|
| ceph rgw | | | | X | |
|
||||||
|
@ -24,8 +24,7 @@ case $::osfamily {
|
|||||||
}
|
}
|
||||||
'RedHat': {
|
'RedHat': {
|
||||||
$ipv6 = true
|
$ipv6 = true
|
||||||
# enable when we figure why mistral tempest tests are so unstable
|
$mistral_enabled = true
|
||||||
$mistral_enabled = false
|
|
||||||
$murano_enabled = true
|
$murano_enabled = true
|
||||||
}
|
}
|
||||||
default: {
|
default: {
|
||||||
@ -68,8 +67,6 @@ include ::openstack_integration::nova
|
|||||||
include ::openstack_integration::trove
|
include ::openstack_integration::trove
|
||||||
include ::openstack_integration::horizon
|
include ::openstack_integration::horizon
|
||||||
include ::openstack_integration::heat
|
include ::openstack_integration::heat
|
||||||
# enable when we figure why mistral tempest tests are so unstable
|
|
||||||
# include ::openstack_integration::mistral
|
|
||||||
include ::openstack_integration::sahara
|
include ::openstack_integration::sahara
|
||||||
if $designate_enabled {
|
if $designate_enabled {
|
||||||
include ::openstack_integration::designate
|
include ::openstack_integration::designate
|
||||||
@ -77,6 +74,9 @@ if $designate_enabled {
|
|||||||
if $murano_enabled {
|
if $murano_enabled {
|
||||||
include ::openstack_integration::murano
|
include ::openstack_integration::murano
|
||||||
}
|
}
|
||||||
|
if $mistral_enabled {
|
||||||
|
include ::openstack_integration::mistral
|
||||||
|
}
|
||||||
include ::openstack_integration::provision
|
include ::openstack_integration::provision
|
||||||
|
|
||||||
class { '::openstack_integration::tempest':
|
class { '::openstack_integration::tempest':
|
||||||
|
@ -17,6 +17,7 @@ class openstack_integration::mistral {
|
|||||||
provider => 'rabbitmqctl',
|
provider => 'rabbitmqctl',
|
||||||
require => Class['rabbitmq'],
|
require => Class['rabbitmq'],
|
||||||
}
|
}
|
||||||
|
Rabbitmq_user_permissions['mistral@/'] -> Service<| tag == 'mistral-service' |>
|
||||||
|
|
||||||
if $::osfamily == 'RedHat' {
|
if $::osfamily == 'RedHat' {
|
||||||
if $::openstack_integration::config::ssl {
|
if $::openstack_integration::config::ssl {
|
||||||
|
@ -241,6 +241,11 @@ echo "VolumesBackupsAdminV2Test" >> /tmp/openstack/tempest/test-whitelist.txt
|
|||||||
# Cinder encrypted volumes
|
# Cinder encrypted volumes
|
||||||
echo "TestEncryptedCinderVolumes" >> /tmp/openstack/tempest/test-whitelist.txt
|
echo "TestEncryptedCinderVolumes" >> /tmp/openstack/tempest/test-whitelist.txt
|
||||||
|
|
||||||
|
# Mistral
|
||||||
|
# We have to ignore a smoke test because of:
|
||||||
|
# https://bugs.launchpad.net/mistral/+bug/1654555
|
||||||
|
echo "test_create_and_delete_workflow" >> /tmp/openstack/tempest/test-whitelist.txt
|
||||||
|
|
||||||
if uses_debs; then
|
if uses_debs; then
|
||||||
# TODO(aschultz): check this after ocata-m2 is published for UCA
|
# TODO(aschultz): check this after ocata-m2 is published for UCA
|
||||||
# 1) this will disable the lbaas listeners tests for ubuntu only due to flakey
|
# 1) this will disable the lbaas listeners tests for ubuntu only due to flakey
|
||||||
@ -249,7 +254,7 @@ if uses_debs; then
|
|||||||
# https://review.openstack.org/#/c/389848/ is packaged in UCA/Ocata
|
# https://review.openstack.org/#/c/389848/ is packaged in UCA/Ocata
|
||||||
EXCLUDES="--regex=^(?!neutron_lbaas.tests.tempest.v2.api.test_listeners_.*admin.ListenersTestJSON.*$)(?!ceilometer.tests.tempest.api.test_telemetry_notification_api.TelemetryNotificationAPITest.test_check_glance_v1_notifications.*$).*"
|
EXCLUDES="--regex=^(?!neutron_lbaas.tests.tempest.v2.api.test_listeners_.*admin.ListenersTestJSON.*$)(?!ceilometer.tests.tempest.api.test_telemetry_notification_api.TelemetryNotificationAPITest.test_check_glance_v1_notifications.*$).*"
|
||||||
else
|
else
|
||||||
EXCLUDES=""
|
EXCLUDES="--regex=^(?!mistral_tempest_tests.tests.api.v2.test_executions.ExecutionTestsV2.test_get_list_executions.*$).*"
|
||||||
fi
|
fi
|
||||||
print_header 'Running Tempest'
|
print_header 'Running Tempest'
|
||||||
cd /tmp/openstack/tempest
|
cd /tmp/openstack/tempest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user