From 80bd4bbeaf8feb2298cc3af16e9a1279678234d4 Mon Sep 17 00:00:00 2001 From: vamahaja Date: Sat, 14 Mar 2020 14:14:30 +0530 Subject: [TestFix] Add pytest marker for tier1 test cases Change-Id: I1d497a9b61762e68558026ddc49e5269b0354ce1 Signed-off-by: vamahaja --- tests/functional/heketi/test_heketi_device_operations.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/functional/heketi/test_heketi_device_operations.py') diff --git a/tests/functional/heketi/test_heketi_device_operations.py b/tests/functional/heketi/test_heketi_device_operations.py index aaa7e2c5..9be4d3af 100644 --- a/tests/functional/heketi/test_heketi_device_operations.py +++ b/tests/functional/heketi/test_heketi_device_operations.py @@ -329,6 +329,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 def test_heketi_device_removal_with_insuff_space(self): """Validate heketi with device removal insufficient space""" @@ -417,6 +418,7 @@ class TestHeketiDeviceOperations(BaseClass): heketi_device_disable, heketi_node, heketi_url, device_id) raise + @pytest.mark.tier1 def test_heketi_device_delete(self): """Test Heketi device delete operation""" @@ -476,6 +478,7 @@ class TestHeketiDeviceOperations(BaseClass): "after the device deletion" % (device_id, node_id)) self.assertNotIn(device_id, node_info_after_deletion, msg) + @pytest.mark.tier1 def test_heketi_device_info(self): """Validate whether device related information is displayed""" -- cgit