Skip to content

Commit db38542

Browse files
author
Daan Hoogland
committed
skip lifemigration for centos
1 parent c8f7c0d commit db38542

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
@@ -1443,6 +1443,12 @@ def setUp(self):
14431443
if len(self.hosts) < 2:
14441444
self.skipTest("Requires at least two hosts for performing migration related tests")
14451445

1446+
1447+
for host in self.hosts:
1448+
print(f"=== setup() === Host.OS = {host.details['Host.OS']}")
1449+
if host.details['Host.OS'] in ['CentOS']:
1450+
self.skipTest("live migration is not stabily supported on CentOS")
1451+
14461452
def tearDown(self):
14471453
try:
14481454
cleanup_resources(self.apiclient, self.cleanup)

0 commit comments

Comments
 (0)