mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-8588 - Remove redundant skip test for LXC
Signed-off-by: wilderrodrigues <wrodrigues@schubergphilis.com> This closes #526
This commit is contained in:
parent
d73f64a518
commit
5eccf88508
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue