Skip to content

Commit 23f6e2c

Browse files
remove KVM running constraint in integration test
1 parent 7583d7d commit 23f6e2c

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

test/integration/component/test_escalations_instances.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3341,9 +3341,6 @@ def test_17_running_vm_scaleup(self):
33413341
deployed in step1
33423342
Step6: Verifying that VM's service offerings is changed
33433343
"""
3344-
if self.hypervisor.lower() == 'kvm':
3345-
self.skipTest(
3346-
"ScaleVM is not supported on KVM. Hence, skipping the test")
33473344
# Checking if Dynamic scaling of VM is supported or not
33483345
list_config = Configurations.list(
33493346
self.apiClient,

test/integration/component/test_escalations_ipaddresses.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3455,8 +3455,7 @@ def test_17_create_update_autoscalepolicy(self):
34553455
Step18: Verifying Autoscale policy is updated with condition2
34563456
"""
34573457
if self.hypervisor.lower() == 'kvm':
3458-
self.skipTest(
3459-
"ScaleVM is not supported on KVM. Hence, skipping the test")
3458+
self.skipTest("Test not supported on KVM. Skipping it")
34603459

34613460
list_physical_networks = PhysicalNetwork.list(
34623461
self.apiClient,
@@ -3734,8 +3733,7 @@ def test_18_create_update_autoscaleprofiles(self):
37343733
Step16: Verifying that Autoscale VM is updated
37353734
"""
37363735
if self.hypervisor.lower() == 'kvm':
3737-
self.skipTest(
3738-
"ScaleVM is not supported on KVM. Hence, skipping the test")
3736+
self.skipTest("Test not supported on KVM. Skipping it")
37393737

37403738
list_physical_networks = PhysicalNetwork.list(
37413739
self.apiClient,
@@ -4061,8 +4059,7 @@ def test_19_create_update_autoscalevmgroup(self):
40614059
Step14: Enabling Autoscale VM group and verifying it was enabled
40624060
"""
40634061
if self.hypervisor.lower() == 'kvm':
4064-
self.skipTest(
4065-
"ScaleVM is not supported on KVM. Hence, skipping the test")
4062+
self.skipTest("Test not supported on KVM. Skipping it.")
40664063

40674064
list_physical_networks = PhysicalNetwork.list(
40684065
self.apiClient,

0 commit comments

Comments
 (0)