We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8f7c0d commit db38542Copy full SHA for db38542
test/integration/smoke/test_vm_life_cycle.py
@@ -1443,6 +1443,12 @@ def setUp(self):
1443
if len(self.hosts) < 2:
1444
self.skipTest("Requires at least two hosts for performing migration related tests")
1445
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
1452
def tearDown(self):
1453
try:
1454
cleanup_resources(self.apiclient, self.cleanup)
0 commit comments