mirror of https://github.com/apache/cloudstack.git
Removed raise for skiptest
This commit is contained in:
parent
2a14f78248
commit
b5a74c34cf
|
|
@ -40,9 +40,9 @@ class TestVmSnapshot(cloudstackTestCase):
|
|||
|
||||
hypervisor = testClient.getHypervisorInfo()
|
||||
if hypervisor.lower() in (KVM.lower(), "hyperv", "lxc"):
|
||||
raise unittest.SkipTest(
|
||||
"VM snapshot feature is not supported on KVM, Hyper-V or LXC")
|
||||
|
||||
unittest.SkipTest(
|
||||
"VM snapshot feature is not supported on KVM, Hyper-V or LXC"
|
||||
)
|
||||
cls.apiclient = testClient.getApiClient()
|
||||
cls.services = testClient.getParsedTestDataConfig()
|
||||
# Get Zone, Domain and templates
|
||||
|
|
|
|||
Loading…
Reference in New Issue