Skip to content

Commit f381763

Browse files
test: fix simulator CI failure test_cluster_drs (#9354)
1 parent c35ba60 commit f381763

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration/smoke/test_cluster_drs.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ def setUpClass(cls):
100100
)
101101
cls._cleanup.append(cls.network)
102102

103-
cls.migrateSvms(cls.cluster)
103+
cls.hypervisor = cls.testClient.getHypervisorInfo()
104+
if cls.hypervisor.lower() not in ['simulator']:
105+
cls.migrateSvms(cls.cluster)
104106

105107
@classmethod
106108
def migrateSvms(cls, cluster):

0 commit comments

Comments
 (0)