1bc1b599df
The I303a28afe69d5d17261a07fd45c4fa92bbad5598 added tempest test coverage for the new unshelve-to-host nova feature. However the test fails in the multi cell job as it tries to unshelve the instance to another cell which is clearly not supported. So this patch skips the unshelve to host test cases to unblock the gate. Related-Bug: #1988316 Change-Id: I50c08a5dcffbf7c31bf02bdfb8615966f9271791
17 lines
812 B
Plaintext
17 lines
812 B
Plaintext
# --exclude-list contents for the nova-multi-cell job defined in .zuul.yaml
|
|
# See: https://stestr.readthedocs.io/en/latest/MANUAL.html#test-selection
|
|
|
|
# Exclude tempest.scenario.test_network tests since they are slow and
|
|
# only test advanced neutron features, unrelated to multi-cell testing.
|
|
^tempest.scenario.test_network
|
|
|
|
# Also exlude resize and migrate tests with qos ports as qos is currently
|
|
# not supported in cross cell resize case . See
|
|
# https://bugs.launchpad.net/nova/+bug/1907511 for details
|
|
test_migrate_with_qos_min_bw_allocation
|
|
test_resize_with_qos_min_bw_allocation
|
|
|
|
# Also exclude unshelve to specific host test cases as unshelve cannot move VMs across cells
|
|
# See https://bugs.launchpad.net/nova/+bug/1988316
|
|
tempest.api.compute.admin.test_servers_on_multinodes.UnshelveToHostMultiNodesTest
|