Skip to content

Commit c290a6e

Browse files
committed
disable ovn based testing of test_live_migration_with_trunk
due to bug #1940425 where ml2/ovn is not correctly configuring the active status on trunk port we see test_live_migration_with_trunk fail more often then not. This was previously disbaled in tempest and then fixed in neutorn. the tempest skip was then reverted and so was the neutron fix as it broke somethign else... so this is failing in our gate again. This change skips test_live_migration_with_trunk on all jobs that are using ml2/ovn but keeps it enabled on the hybrid plug job which uses ml2/ovs. Related-Bug: #1940425 Change-Id: I0a8dd6e6e30526aa2841b4db67ed9affed166fd8
1 parent 3e8b2f3 commit c290a6e

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.zuul.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@
109109
vars:
110110
tox_envlist: all
111111
tempest_test_regex: (^tempest\.api\.compute\.admin\.(test_live_migration|test_migration))
112+
# revert this when bug #1940425 is fixed in neutron
113+
tempest_exclude_regex: (test_live_migration_with_trunk)
112114
devstack_services:
113115
neutron-trunk: true
114116
devstack_local_conf:
@@ -146,6 +148,8 @@
146148
- ^tox.ini$
147149
vars:
148150
tox_envlist: all
151+
# bug #1940425 only affect ml2/ovn so we execute
152+
# test_live_migration_with_trunk in this job to keep
149153
tempest_test_regex: (^tempest\..*compute\..*(migration|resize|reboot).*)
150154
devstack_localrc:
151155
Q_AGENT: openvswitch
@@ -238,6 +242,8 @@
238242
vars:
239243
tox_envlist: all
240244
tempest_test_regex: (^tempest\.api\.compute\.admin\.(test_live_migration|test_migration))
245+
# revert this when bug #1940425 is fixed in neutron
246+
tempest_exclude_regex: (test_live_migration_with_trunk)
241247
devstack_local_conf:
242248
test-config:
243249
$TEMPEST_CONFIG:
@@ -381,7 +387,9 @@
381387
# tempest_test_exclude_list.
382388
# FIXME(lyarwood): The tempest.api.compute.admin.test_volume_swap tests
383389
# are skipped until bug #1929710 is resolved.
384-
tempest_exclude_regex: ^tempest\.(scenario\.test_network_(?!qos)|api\.compute\.admin\.test_volume_swap)|tempest.api.compute.servers.test_device_tagging.TaggedAttachmentsTest.test_tagged_attachment
390+
# revert excluding test_live_migration_with_trunk when bug #1940425
391+
# is fixed in neutron
392+
tempest_exclude_regex: ^tempest\.(scenario\.test_network_(?!qos)|api\.compute\.admin\.test_volume_swap)|tempest.api.compute.servers.test_device_tagging.TaggedAttachmentsTest.test_tagged_attachment|test_live_migration_with_trunk
385393
devstack_local_conf:
386394
post-config:
387395
$NOVA_CPU_CONF:
@@ -541,6 +549,8 @@
541549
block_migrate_cinder_iscsi: true
542550
tox_envlist: all
543551
tempest_test_regex: ((tempest\.(api\.compute|scenario)\..*smoke.*)|(^tempest\.api\.compute\.admin\.(test_live_migration|test_migration)))
552+
# revert this when bug #1940425 is fixed in neutron
553+
tempest_exclude_regex: (test_live_migration_with_trunk)
544554

545555
- job:
546556
name: nova-multi-cell
@@ -628,6 +638,8 @@
628638
pre-run:
629639
- playbooks/ceph/glance-setup.yaml
630640
vars:
641+
# revert this when bug #1940425 is fixed in neutron
642+
tempest_exclude_regex: (test_live_migration_with_trunk)
631643
# NOTE(danms): Increase our swap size since we're dealing with
632644
# larger images and trigger OOMs.
633645
configure_swap_size: 8192

devstack/nova-multi-cell-exclude-list.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,6 @@ test_resize_with_qos_min_bw_allocation
1414
# Also exclude unshelve to specific host test cases as unshelve cannot move VMs across cells
1515
# See https://bugs.launchpad.net/nova/+bug/1988316
1616
tempest.api.compute.admin.test_servers_on_multinodes.UnshelveToHostMultiNodesTest
17+
18+
# revert this when bug #1940425 is fixed in neutron
19+
test_live_migration_with_trunk

0 commit comments

Comments
 (0)