CLOUDSTACK-8588 - Remove redundant skip test for LXC

Signed-off-by: wilderrodrigues <wrodrigues@schubergphilis.com>

This closes #526
This commit is contained in:
pritisarap12 2015-06-25 14:17:02 +05:30 committed by wilderrodrigues
parent d73f64a518
commit 5eccf88508
1 changed files with 0 additions and 9 deletions

View File

@ -53,12 +53,6 @@ class TestDeployVM(cloudstackTestCase):
# Get Zone, Domain and templates
cls.domain = get_domain(cls.api_client)
cls.zone = get_zone(cls.api_client, cls.testClient.getZoneForTests())
cls.hypervisor = cls.testClient.getHypervisorInfo()
cls.unsupportedStorageType = False
if cls.hypervisor.lower() == 'lxc':
if not find_storage_pool_type(cls.api_client, storagetype='rbd'):
cls.unsupportedStorageType = True
cls.hypervisor = cls.testClient.getHypervisorInfo()
cls.skip = False
@ -525,9 +519,6 @@ class TestDeployVM(cloudstackTestCase):
# 3. Create an instance with datadisk attached to it. Detach DATADISK
# 4. Attach the volume to first virtual machine.
if self.unsupportedStorageType:
self.skipTest(
"unsupported storage type")
self.debug("Deploying instance in the account: %s" %
self.account.name)