Skip to content

Commit 03c05bc

Browse files
DaanHooglandDaan Hoogland
andauthored
tests: skip livemigration for centos (#4801)
This PR skips live migration on centos as the default installations for qemu/libvirt don't support it. Fixes #4757 Co-authored-by: Daan Hoogland <dahn@onecht.net>
1 parent ca8920d commit 03c05bc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/integration/smoke/test_vm_life_cycle.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1409,6 +1409,11 @@ def setUp(self):
14091409
if len(self.hosts) < 2:
14101410
self.skipTest("Requires at least two hosts for performing migration related tests")
14111411

1412+
1413+
for host in self.hosts:
1414+
if host.details['Host.OS'] in ['CentOS']:
1415+
self.skipTest("live migration is not stabily supported on CentOS")
1416+
14121417
def tearDown(self):
14131418
try:
14141419
cleanup_resources(self.apiclient, self.cleanup)

0 commit comments

Comments
 (0)