mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-6760: skipping unsupported scale VM test on KVM
(cherry picked from commit 30bd9b8fe0)
This commit is contained in:
parent
e51a9f1320
commit
84ba19d0bc
|
|
@ -34,6 +34,9 @@ class TestScaleVm(cloudstackTestCase):
|
|||
testClient = super(TestScaleVm, cls).getClsTestClient()
|
||||
cls.apiclient = testClient.getApiClient()
|
||||
cls.services = testClient.getParsedTestDataConfig()
|
||||
cls.hypervisor = cls.testClient.getHypervisorInfo()
|
||||
if cls.hypervisor.lower() == 'kvm':
|
||||
raise unittest.SkipTest("ScaleVM is not supported on KVM. Hence, skipping the test")
|
||||
|
||||
# Get Zone, Domain and templates
|
||||
domain = get_domain(cls.apiclient)
|
||||
|
|
|
|||
Loading…
Reference in New Issue