Skip to content

Commit 8eec8c6

Browse files
author
Daan Hoogland
committed
skip lifemigration for centos
1 parent ab4121d commit 8eec8c6

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

1393+
1394+
for host in self.hosts:
1395+
print(f"=== setup() === Host.OS = {host.details['Host.OS']}")
1396+
if host.details['Host.OS'] in ['CentOS']:
1397+
self.skipTest("live migration is not stabily supported on CentOS")
1398+
13931399
def tearDown(self):
13941400
super(TestKVMLiveMigration,self).tearDown()
13951401

0 commit comments

Comments
 (0)