We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2218053 commit d0f806bCopy full SHA for d0f806b
1 file changed
test/integration/smoke/test_scale_vm.py
@@ -34,6 +34,9 @@ def setUpClass(cls):
34
testClient = super(TestScaleVm, cls).getClsTestClient()
35
cls.apiclient = testClient.getApiClient()
36
cls.services = testClient.getParsedTestDataConfig()
37
+ cls.hypervisor = cls.testClient.getHypervisorInfo()
38
+ if cls.hypervisor.lower() == 'kvm':
39
+ raise unittest.SkipTest("ScaleVM is not supported on KVM. Hence, skipping the test")
40
41
# Get Zone, Domain and templates
42
domain = get_domain(cls.apiclient)
0 commit comments