We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cdde87 commit 08b2df6Copy full SHA for 08b2df6
test/integration/smoke/test_vm_life_cycle.py
@@ -1409,6 +1409,12 @@ def setUp(self):
1409
if len(self.hosts) < 2:
1410
self.skipTest("Requires at least two hosts for performing migration related tests")
1411
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
1418
def tearDown(self):
1419
try:
1420
cleanup_resources(self.apiclient, self.cleanup)
0 commit comments