CLOUDSTACK-6760: skipping unsupported scale VM test on KVM

(cherry picked from commit 30bd9b8fe0)
This commit is contained in:
SrikanteswaraRao Talluri 2014-05-26 19:23:41 +05:30 committed by Daan Hoogland
parent e51a9f1320
commit 84ba19d0bc
1 changed files with 3 additions and 0 deletions

View File

@ -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)