Skip to content

Commit 08b2df6

Browse files
author
Daan Hoogland
committed
skip lifemigration for centos
1 parent 2cdde87 commit 08b2df6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/integration/smoke/test_vm_life_cycle.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1409,6 +1409,12 @@ 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+
print(f"=== setup() === Host.OS = {host.details['Host.OS']}")
1415+
if host.details['Host.OS'] in ['CentOS']:
1416+
self.skipTest("live migration is not stabily supported on CentOS")
1417+
14121418
def tearDown(self):
14131419
try:
14141420
cleanup_resources(self.apiclient, self.cleanup)

0 commit comments

Comments
 (0)