From b7a55bcb87fc52d64e581a907b98271f152286ae Mon Sep 17 00:00:00 2001 From: Valerii Ponomarov Date: Tue, 18 Sep 2018 15:59:28 +0530 Subject: Skip 2 tests due to blocker-bug Skip 2 tests in 'test_heketi_volume_operations' test module due to existing unfixed bug: BZ-1629889 After fix of this bug, these 2 tests should be refactored the way, where we leave Heketi cluster as was, not changing set of disks, as it is now. Change-Id: I020e7b91c41c3bd93cf1984f733adcdcbd361f92 --- tests/functional/common/heketi/test_heketi_volume_operations.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/functional/common/heketi/test_heketi_volume_operations.py b/tests/functional/common/heketi/test_heketi_volume_operations.py index f9de7f56..69d4e056 100644 --- a/tests/functional/common/heketi/test_heketi_volume_operations.py +++ b/tests/functional/common/heketi/test_heketi_volume_operations.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +from unittest import skip from glusto.core import Glusto as g from cnslibs.common.heketi_ops import (heketi_create_topology, @@ -144,6 +144,7 @@ class TestHeketiVolumeOperations(HeketiClientSetupBaseClass): "Size: %s" % (str(expected_size), str(volume_info['size'])))) + @skip("Blocked by BZ-1629889") def test_heketi_with_device_removal_insuff_space(self): """ Test to create volume consuming all space and then adding new device @@ -248,6 +249,7 @@ class TestHeketiVolumeOperations(HeketiClientSetupBaseClass): device_enable, False, "Device %s could not be enabled" % device["id"]) + @skip("Blocked by BZ-1629889") def test_device_remove_basic_validation(self): """ Test to create volume after a device removal and with new device added. -- cgit