From 84ba19d0bcac2a8e8135fccd12e02a853f987f36 Mon Sep 17 00:00:00 2001 From: SrikanteswaraRao Talluri Date: Mon, 26 May 2014 19:23:41 +0530 Subject: [PATCH] CLOUDSTACK-6760: skipping unsupported scale VM test on KVM (cherry picked from commit 30bd9b8fe03a7162d67ec16b94846b0afb77fc2b) --- test/integration/smoke/test_scale_vm.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/integration/smoke/test_scale_vm.py b/test/integration/smoke/test_scale_vm.py index 03d2e87bb40..261fe93fb26 100644 --- a/test/integration/smoke/test_scale_vm.py +++ b/test/integration/smoke/test_scale_vm.py @@ -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)