From fcbd09ed00839d262598628695437260fcf42971 Mon Sep 17 00:00:00 2001 From: Valerii Ponomarov Date: Mon, 27 May 2019 22:01:54 +0530 Subject: Skip several test cases due to the open bug BZ-1714292 Change-Id: I5cada2a8dff40516310de38e23b98de2a64efc11 --- tests/functional/provisioning/test_dynamic_provisioning_block.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/functional/provisioning/test_dynamic_provisioning_block.py b/tests/functional/provisioning/test_dynamic_provisioning_block.py index a3303500..cddb9100 100644 --- a/tests/functional/provisioning/test_dynamic_provisioning_block.py +++ b/tests/functional/provisioning/test_dynamic_provisioning_block.py @@ -1,4 +1,5 @@ import math +from unittest import skip from glusto.core import Glusto as g @@ -553,6 +554,7 @@ class TestDynamicProvisioningBlockP0(GlusterBlockBaseClass): "only %s free space is available" % (free_space, free_size)) + @skip("Blocked by BZ-1714292") def test_creation_of_block_vol_greater_than_the_default_size_of_BHV_neg( self): """Verify that block volume creation fails when we create block @@ -608,6 +610,7 @@ class TestDynamicProvisioningBlockP0(GlusterBlockBaseClass): verify_pvc_status_is_bound(self.node, pvc_name) + @skip("Blocked by BZ-1714292") def test_creation_of_block_vol_greater_than_the_default_size_of_BHV_pos( self): """Verify that block volume creation succeed when we create BHV @@ -633,6 +636,7 @@ class TestDynamicProvisioningBlockP0(GlusterBlockBaseClass): # create a block pvc greater than default BHV size self.create_and_wait_for_pvc(pvc_size=(default_bhv_size + 1)) + @skip("Blocked by BZ-1714292") def test_expansion_of_block_hosting_volume_using_heketi(self): """Verify that after expanding block hosting volume we are able to consume the expanded space""" -- cgit