summaryrefslogtreecommitdiffstats
path: root/tests/functional
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional')
-rw-r--r--tests/functional/heketi/test_heketi_create_volume.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/functional/heketi/test_heketi_create_volume.py b/tests/functional/heketi/test_heketi_create_volume.py
index a5a680a4..938a568e 100644
--- a/tests/functional/heketi/test_heketi_create_volume.py
+++ b/tests/functional/heketi/test_heketi_create_volume.py
@@ -458,6 +458,13 @@ class TestHeketiVolume(BaseClass):
h_db_check_vol_before = (
h_db_check_before.get("{}volumes".format(vol_type)))
+ # Get existing heketi volume list
+ existing_volumes = heketi_volume_list(h_node, h_url, json=True)
+
+ # Add cleanup function to clean stale volumes created during test
+ self.addCleanup(
+ self._cleanup_heketi_volumes, existing_volumes.get("volumes"))
+
# Delete heketi pod to clean db operations
if(h_db_check_bricks_before.get("pending")
or h_db_check_vol_before.get("pending")):