diff --git a/test/integration/testpaths/testpath_stopped_vm.py b/test/integration/testpaths/testpath_stopped_vm.py index 1260330f197..7d8886c5069 100644 --- a/test/integration/testpaths/testpath_stopped_vm.py +++ b/test/integration/testpaths/testpath_stopped_vm.py @@ -662,6 +662,7 @@ class TestAdvancedZoneStoppedVM(cloudstackTestCase): # 3. Register an ISO and attach it to the VM # 4. Verify that ISO is attached to the VM """ + if self.hypervisor.lower() in ['lxc']: self.skipTest( "feature is not supported in %s" % @@ -727,6 +728,10 @@ class TestAdvancedZoneStoppedVM(cloudstackTestCase): # 4. Verify that ISO is attached to the VM """ + if self.hypervisor.lower() in ['lxc']: + self.skipTest( + "feature is not supported in %s" % + self.hypervisor) # Create VM in account virtual_machine = VirtualMachine.create( diff --git a/test/integration/testpaths/testpath_volumelifecycle.py b/test/integration/testpaths/testpath_volumelifecycle.py index 6e979e7f865..a2e8390df85 100644 --- a/test/integration/testpaths/testpath_volumelifecycle.py +++ b/test/integration/testpaths/testpath_volumelifecycle.py @@ -230,7 +230,7 @@ class TestPathVolume(cloudstackTestCase): def setUp(self): self.apiclient = self.testClient.getApiClient() self.dbclient = self.testClient.getDbConnection() - if self.unsupportedHypervisor or self.insuffPools: + if self.unsupportedHypervisor or self.insuffStorage: self.skipTest("Skipping test because of insuff resources\ %s" % self.hypervisor)