summaryrefslogtreecommitdiffstats
path: root/tests/functional/heketi/test_heketi_device_operations.py
diff options
context:
space:
mode:
authorvamahaja <vamahaja@redhat.com>2020-09-17 09:32:15 +0530
committervamahaja <vamahaja@redhat.com>2020-10-12 16:45:43 +0530
commitd0604ca7d194a8f158096850ac931d5f5a0b8529 (patch)
tree4e2410878cd9853d66c2ff9e1ba3bd28c147ca91 /tests/functional/heketi/test_heketi_device_operations.py
parentf56bb3920cb501d0fafa583bc851c1e7dda4aa30 (diff)
[TestFix][Tier2] Update pytest marker for 'tier2' tests
Change-Id: I5db480da820c82b7b15f90ed70a4f60643079cb0 Signed-off-by: vamahaja <vamahaja@redhat.com>
Diffstat (limited to 'tests/functional/heketi/test_heketi_device_operations.py')
-rwxr-xr-xtests/functional/heketi/test_heketi_device_operations.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/functional/heketi/test_heketi_device_operations.py b/tests/functional/heketi/test_heketi_device_operations.py
index 71430a14..c8a9b991 100755
--- a/tests/functional/heketi/test_heketi_device_operations.py
+++ b/tests/functional/heketi/test_heketi_device_operations.py
@@ -298,7 +298,7 @@ class TestHeketiDeviceOperations(BaseClass):
"Some of the '%s' volume bricks is present of the removed "
"'%s' device." % (vol_info['id'], lowest_device_id))
- @pytest.mark.tier1
+ @pytest.mark.tier2
@ddt.data((True, False), (False, False), (True, True))
@ddt.unpack
def test_heketi_device_remove_delete(
@@ -428,7 +428,7 @@ class TestHeketiDeviceOperations(BaseClass):
heketi_device_disable, heketi_node, heketi_url, device_id)
raise
- @pytest.mark.tier1
+ @pytest.mark.tier2
def test_heketi_device_delete(self):
"""Test Heketi device delete operation"""
@@ -488,7 +488,7 @@ class TestHeketiDeviceOperations(BaseClass):
"after the device deletion" % (device_id, node_id))
self.assertNotIn(device_id, node_info_after_deletion, msg)
- @pytest.mark.tier1
+ @pytest.mark.tier2
def test_heketi_device_info(self):
"""Validate whether device related information is displayed"""
@@ -554,7 +554,7 @@ class TestHeketiDeviceOperations(BaseClass):
self.assertEqual(brick[key], brick_from_t[key])
self.assertEqual(brick_match_count, len(device_info['bricks']))
- @pytest.mark.tier1
+ @pytest.mark.tier2
def test_device_delete_with_bricks(self):
"""Validate device deletion with existing bricks on the device"""
h_node, h_url = self.heketi_client_node, self.heketi_server_url