We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab4121d commit 8eec8c6Copy full SHA for 8eec8c6
test/integration/smoke/test_vm_life_cycle.py
@@ -1390,6 +1390,12 @@ def setUp(self):
1390
if len(self.hosts) < 2:
1391
self.skipTest("Requires at least two hosts for performing migration related tests")
1392
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
1399
def tearDown(self):
1400
super(TestKVMLiveMigration,self).tearDown()
1401
0 commit comments