skip lifemigration for centos

This commit is contained in:
Daan Hoogland 2021-02-25 16:50:56 +01:00
parent 8ffb0a15a3
commit 56b5912bb6
1 changed files with 6 additions and 0 deletions

View File

@ -1424,6 +1424,12 @@ class TestKVMLiveMigration(cloudstackTestCase):
if len(self.hosts) < 2:
self.skipTest("Requires at least two hosts for performing migration related tests")
for host in self.hosts:
print(f"=== setup() === Host.OS = {host.details['Host.OS']}")
if host.details['Host.OS'] in ['CentOS']:
self.skipTest("live migration is not stabily supported on CentOS")
def tearDown(self):
super(TestKVMLiveMigration,self).tearDown()