diff --git a/ci-scripts/cls_oaicitest.py b/ci-scripts/cls_oaicitest.py
index 8ec97c2e6e0660186e4fd0af1ae0946ddc7293c1..78c20fb1729c8383d7e95308b48c6e44f8564243 100644
--- a/ci-scripts/cls_oaicitest.py
+++ b/ci-scripts/cls_oaicitest.py
@@ -293,7 +293,7 @@ class OaiCiTest():
 		HTML.CreateHtmlTestRowQueue('N/A', 'OK', messages)
 		return True
 
-	def AttachUE(self, HTML, RAN, EPC, CONTAINERS):
+	def AttachUE(self, HTML):
 		ues = [cls_module.Module_UE(ue_id, server_name) for ue_id, server_name in zip(self.ue_ids, self.nodes)]
 		with concurrent.futures.ThreadPoolExecutor(max_workers=64) as executor:
 			futures = [executor.submit(ue.attach) for ue in ues]
@@ -307,7 +307,6 @@ class OaiCiTest():
 		else:
 			logging.error(f'error attaching or wrong MTU: attached {attached}, mtus {mtus}')
 			HTML.CreateHtmlTestRowQueue('N/A', 'KO', ["Could not retrieve UE IP address(es) or MTU(s) wrong!"])
-			self.AutoTerminateUEandeNB(HTML, RAN, EPC, CONTAINERS)
 		return success
 
 	def DetachUE(self, HTML):
@@ -358,7 +357,7 @@ class OaiCiTest():
 		HTML.CreateHtmlTestRowQueue('NA', 'OK', messages)
 		return True
 
-	def Ping_common(self, EPC, ue, RAN, logPath):
+	def Ping_common(self, EPC, ue, logPath):
 		# Launch ping on the EPC side (true for ltebox and old open-air-cn)
 		ping_status = 0
 		ueIP = ue.getIP()
@@ -429,7 +428,7 @@ class OaiCiTest():
 
 		return (True, message)
 
-	def Ping(self,HTML,RAN,EPC,CONTAINERS):
+	def Ping(self, HTML, EPC, CONTAINERS):
 		if EPC.IPAddress == '' or EPC.UserName == '' or EPC.Password == '' or EPC.SourceCodePath == '':
 			HELP.GenericHelp(CONST.Version)
 			sys.exit('Insufficient Parameter')
@@ -444,7 +443,7 @@ class OaiCiTest():
 		ues = [cls_module.Module_UE(ue_id, server_name) for ue_id, server_name in zip(self.ue_ids, self.nodes)]
 		logging.debug(ues)
 		with concurrent.futures.ThreadPoolExecutor(max_workers=64) as executor:
-			futures = [executor.submit(self.Ping_common, EPC, ue, RAN, logPath) for ue in ues]
+			futures = [executor.submit(self.Ping_common, EPC, ue, logPath) for ue in ues]
 			results = [f.result() for f in futures]
 			# each result in results is a tuple, first member goes to successes, second to messages
 			successes, messages = map(list, zip(*results))
@@ -463,10 +462,9 @@ class OaiCiTest():
 			HTML.CreateHtmlTestRowQueue(self.ping_args, 'OK', messages)
 		else:
 			HTML.CreateHtmlTestRowQueue(self.ping_args, 'KO', messages)
-			self.AutoTerminateUEandeNB(HTML,RAN,EPC,CONTAINERS)
 		return success
 
-	def Iperf_Module(self, EPC, ue, svr, RAN, idx, ue_num, logPath):
+	def Iperf_Module(self, EPC, ue, svr, idx, ue_num, logPath):
 		ueIP = ue.getIP()
 		if not ueIP:
 			return (False, f"UE {ue.getName()} has no IP address")
@@ -512,7 +510,7 @@ class OaiCiTest():
 
 		return (status, f'{ue_header}\n{msg}')
 
-	def Iperf(self,HTML,RAN,EPC,CONTAINERS):
+	def Iperf(self,HTML,EPC,CONTAINERS):
 		if EPC.IPAddress == '' or EPC.UserName == '' or EPC.Password == '' or EPC.SourceCodePath == '':
 			HELP.GenericHelp(CONST.Version)
 			sys.exit('Insufficient Parameter')
@@ -530,7 +528,7 @@ class OaiCiTest():
 		svr = cls_module.Module_UE(self.svr_id,self.svr_node)
 		logging.debug(ues)
 		with concurrent.futures.ThreadPoolExecutor(max_workers=64) as executor:
-			futures = [executor.submit(self.Iperf_Module, EPC, ue, svr, RAN, i, len(ues), logPath) for i, ue in enumerate(ues)]
+			futures = [executor.submit(self.Iperf_Module, EPC, ue, svr, i, len(ues), logPath) for i, ue in enumerate(ues)]
 			results = [f.result() for f in futures]
 			# each result in results is a tuple, first member goes to successes, second to messages
 			successes, messages = map(list, zip(*results))
@@ -549,10 +547,9 @@ class OaiCiTest():
 			HTML.CreateHtmlTestRowQueue(self.iperf_args, 'OK', messages)
 		else:
 			HTML.CreateHtmlTestRowQueue(self.iperf_args, 'KO', messages)
-			self.AutoTerminateUEandeNB(HTML,RAN,EPC,CONTAINERS)
 		return success
 
-	def Iperf2_Unidir(self,HTML,RAN,EPC,CONTAINERS):
+	def Iperf2_Unidir(self,HTML,EPC,CONTAINERS):
 		if self.ue_ids == [] or self.svr_id == None or len(self.ue_ids) != 1:
 			raise Exception("no module names in self.ue_ids or/and self.svr_id provided, multi UE scenario not supported")
 		ue = cls_module.Module_UE(self.ue_ids[0].strip(),self.nodes[0].strip())
@@ -590,7 +587,6 @@ class OaiCiTest():
 			HTML.CreateHtmlTestRowQueue(self.iperf_args, 'OK', [f'{ue_header}\n{msg}'])
 		else:
 			HTML.CreateHtmlTestRowQueue(self.iperf_args, 'KO', [f'{ue_header}\n{msg}'])
-			self.AutoTerminateUEandeNB(HTML,RAN,EPC,CONTAINERS)
 		return success
 
 	def AnalyzeLogFile_UE(self, UElogFile,HTML,RAN):
@@ -874,62 +870,6 @@ class OaiCiTest():
 		HTML.CreateHtmlTestRowQueue(f'N/A', 'OK', messages)
 		return True
 
-	def AutoTerminateUEandeNB(self,HTML,RAN,EPC,CONTAINERS):
-		if (RAN.Initialize_eNB_args != ''):
-			self.testCase_id = 'AUTO-KILL-RAN'
-			HTML.testCase_id = self.testCase_id
-			self.desc = 'Automatic Termination of all RAN nodes'
-			HTML.desc = self.desc
-			self.ShowTestID()
-			#terminate all RAN nodes eNB/gNB/OCP
-			for instance in range(0, len(RAN.air_interface)):
-				if RAN.air_interface[instance]!='':
-					logging.debug(f'Auto Termination of Instance {instance} : {RAN.air_interface[instance]}')
-					RAN.eNB_instance=instance
-					RAN.TerminateeNB(HTML,EPC)
-		if CONTAINERS.yamlPath[0] != '':
-			self.testCase_id = 'AUTO-KILL-CONTAINERS'
-			HTML.testCase_id = self.testCase_id
-			self.desc = 'Automatic Termination of all RAN containers'
-			HTML.desc = self.desc
-			self.ShowTestID()
-			for instance in range(0, len(CONTAINERS.yamlPath)):
-				if CONTAINERS.yamlPath[instance]!='':
-					CONTAINERS.eNB_instance=instance
-					if CONTAINERS.deployKind[instance]:
-						CONTAINERS.UndeployObject(HTML,RAN)
-					else:
-						CONTAINERS.UndeployGenObject(HTML,RAN, self)
-
-	#this function is called only if eNB/gNB fails to start
-	#RH to be re-factored
-	def AutoTerminateeNB(self,HTML,RAN,EPC,CONTAINERS):
-		if (RAN.Initialize_eNB_args != ''):
-			self.testCase_id = 'AUTO-KILL-RAN'
-			HTML.testCase_id = self.testCase_id
-			self.desc = 'Automatic Termination of all RAN nodes'
-			HTML.desc = self.desc
-			self.ShowTestID()
-			#terminate all RAN nodes eNB/gNB/OCP
-			for instance in range(0, len(RAN.air_interface)):
-				if RAN.air_interface[instance]!='':
-					logging.debug(f'Auto Termination of Instance {instance} : {RAN.air_interface[instance]}')
-					RAN.eNB_instance=instance
-					RAN.TerminateeNB(HTML,EPC)
-		if CONTAINERS.yamlPath[0] != '':
-			self.testCase_id = 'AUTO-KILL-CONTAINERS'
-			HTML.testCase_id = self.testCase_id
-			self.desc = 'Automatic Termination of all RAN containers'
-			HTML.desc = self.desc
-			self.ShowTestID()
-			for instance in range(0, len(CONTAINERS.yamlPath)):
-				if CONTAINERS.yamlPath[instance]!='':
-					CONTAINERS.eNB_instance=instance
-					if CONTAINERS.deployKind[instance]:
-						CONTAINERS.UndeployObject(HTML,RAN)
-					else:
-						CONTAINERS.UndeployGenObject(HTML,RAN,self)
-
 	def LogCollectBuild(self,RAN):
 		# Some pipelines are using "none" IP / Credentials
 		# In that case, just forget about it
diff --git a/ci-scripts/main.py b/ci-scripts/main.py
index b6f59950ecad104421b454bdbb69c34daa39fb6a..9c6a20d93511ed1ec520c3fc26d6053fc85990eb 100644
--- a/ci-scripts/main.py
+++ b/ci-scripts/main.py
@@ -235,7 +235,7 @@ def ExecuteActionWithParam(action):
 		if action == 'Initialize_UE':
 			success = CiTestObj.InitializeUE(HTML)
 		elif action == 'Attach_UE':
-			success = CiTestObj.AttachUE(HTML, RAN, EPC, CONTAINERS)
+			success = CiTestObj.AttachUE(HTML)
 		elif action == 'Detach_UE':
 			success = CiTestObj.DetachUE(HTML)
 		elif action == 'Terminate_UE':
@@ -259,7 +259,7 @@ def ExecuteActionWithParam(action):
 		else:
 			CiTestObj.nodes = [None] * len(CiTestObj.ue_ids)
 		ping_rttavg_threshold = test.findtext('ping_rttavg_threshold') or ''
-		success = CiTestObj.Ping(HTML,RAN,EPC,CONTAINERS)
+		success = CiTestObj.Ping(HTML,EPC,CONTAINERS)
 
 	elif action == 'Iperf' or action == 'Iperf2_Unidir':
 		CiTestObj.iperf_args = test.findtext('iperf_args')
@@ -286,9 +286,9 @@ def ExecuteActionWithParam(action):
 			logging.error('test-case has wrong option ' + CiTestObj.iperf_options)
 			CiTestObj.iperf_options = 'check'
 		if action == 'Iperf':
-			success = CiTestObj.Iperf(HTML,RAN,EPC,CONTAINERS)
+			success = CiTestObj.Iperf(HTML, EPC, CONTAINERS)
 		elif action == 'Iperf2_Unidir':
-			success = CiTestObj.Iperf2_Unidir(HTML,RAN,EPC,CONTAINERS)
+			success = CiTestObj.Iperf2_Unidir(HTML, EPC, CONTAINERS)
 
 	elif action == 'IdleSleep':
 		st = test.findtext('idle_sleep_time_in_sec') or "5"
@@ -376,12 +376,8 @@ def ExecuteActionWithParam(action):
 			CONTAINERS.services[CONTAINERS.eNB_instance] = string_field
 		if action == 'Deploy_Object':
 			success = CONTAINERS.DeployObject(HTML)
-			if not success:
-				CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS)
 		elif action == 'Undeploy_Object':
 			success = CONTAINERS.UndeployObject(HTML, RAN)
-			if not success:
-				CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS)
 		elif action == 'Create_Workspace':
 			success = CONTAINERS.Create_Workspace(HTML)
 
@@ -746,7 +742,6 @@ elif re.match('^TesteNB$', mode, re.IGNORECASE) or re.match('^TestUE$', mode, re
 				if not test_succeeded:
 					logging.error(f"test ID {test_case_id} action {action} failed ({test_succeeded}), skipping next tests")
 					task_set_succeeded = False
-					CiTestObj.AutoTerminateeNB(HTML,RAN,EPC,CONTAINERS)
 			except Exception as e:
 				s = traceback.format_exc()
 				logging.error(f'while running CI, an exception occurred:\n{s}')
diff --git a/ci-scripts/tests/ping-iperf.py b/ci-scripts/tests/ping-iperf.py
index 7fb019e5fbb190b6f1c161218fc2d4ecc0f67781..6ba35d04d375f012077e2f726042e20dbd965bda 100644
--- a/ci-scripts/tests/ping-iperf.py
+++ b/ci-scripts/tests/ping-iperf.py
@@ -14,7 +14,6 @@ sys.path.append('./') # to find OAI imports below
 import cls_oai_html
 import cls_oaicitest
 import cls_containerize
-import ran
 import epc
 
 class TestPingIperf(unittest.TestCase):
@@ -30,13 +29,12 @@ class TestPingIperf(unittest.TestCase):
 		self.epc.UserName = None
 		self.epc.Password = None
 		self.epc.SourceCodePath = os.getcwd()
-		self.ran = ran.RANManagement()
 
 	def test_ping(self):
 		self.ci.ping_args = "-c3 127.0.0.1"
 		self.ci.ping_packetloss_threshold = "0"
 		# TODO Should need nothing but options and UE(s) to use
-		success = self.ci.Ping(self.html, self.ran, self.epc, self.cont)
+		success = self.ci.Ping(self.html, self.epc, self.cont)
 		self.assertTrue(success)
 
 	def test_iperf(self):
@@ -50,7 +48,7 @@ class TestPingIperf(unittest.TestCase):
 		self.ci.iperf_bitrate_threshold = "0"
 		self.ci.iperf_profile = "balanced"
 		# TODO Should need nothing but options and UE(s) to use
-		success = self.ci.Iperf(self.html, self.ran, self.epc, self.cont)
+		success = self.ci.Iperf(self.html, self.epc, self.cont)
 		self.assertTrue(success)
 
 if __name__ == '__main__':
diff --git a/ci-scripts/xml_files/container_4g_l2sim_tdd.xml b/ci-scripts/xml_files/container_4g_l2sim_tdd.xml
index 2bd0c5fcf9e15b973ff56cb5a53848f827419fcf..28f55c6d683cb01f7364326fe23870d3da707b99 100644
--- a/ci-scripts/xml_files/container_4g_l2sim_tdd.xml
+++ b/ci-scripts/xml_files/container_4g_l2sim_tdd.xml
@@ -37,6 +37,7 @@
  030011
  030012
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -139,8 +140,16 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_l2sim_fdd</yaml_path>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml
index a637d79cba886c23ebf1122480a9713e34def6c1..c717ba87b9a870dc9b55921fe7dd11cb993b3891 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz.xml
@@ -40,6 +40,7 @@
  030011
  030012
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
         <testCase id="800813">
@@ -154,10 +155,18 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_rfsimulator_fdd_05MHz</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml
index 642342e7b8e532a91cf89968170c6104fbc4a2dd..67f66d2e6ca9a59c6961f34eaf92d92c642a9b72 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_05MHz_noS1.xml
@@ -36,6 +36,7 @@
  030011
  030012
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -125,10 +126,18 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_rfsimulator_fdd_05MHz_noS1</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml
index cddecd09d0ab0910383d8d5c1a97da16756d52d4..f04057d8bfc460c0ad01187ed74d930d5d54f729 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_10MHz.xml
@@ -40,6 +40,7 @@
  030011
  030012
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -154,10 +155,18 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_rfsimulator_fdd_10MHz</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml
index 619257cbc16cfd10aaa92c623231876af71fe0ca..449341e13eb55e90146a56584103f1f6188ed0fe 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fdd_20MHz.xml
@@ -40,6 +40,7 @@
  030011
  030012
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -154,10 +155,18 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_rfsimulator_fdd_20MHz</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_fembms.xml b/ci-scripts/xml_files/container_4g_rfsim_fembms.xml
index d33832d3c2039f55e1b18b437bbb14d3b51751c7..7ef304e64819cf8807d9f73fe42c5e38259588db 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_fembms.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_fembms.xml
@@ -33,6 +33,7 @@
  000001
  030011
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -92,10 +93,18 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_rfsimulator_fembms</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_mbms.xml b/ci-scripts/xml_files/container_4g_rfsim_mbms.xml
index 04ec93ebf56e3c524e22d5546446c812e98dd21a..82361921387865b37b936241f2e3e05cc9d14112 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_mbms.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_mbms.xml
@@ -33,6 +33,7 @@
  000001
  030011
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -92,10 +93,18 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_rfsimulator_mbms</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml b/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml
index f7b1e50ebbda11720a0831ad178eb1bfc77162d6..eb84827141470c8976a003a9fc33e197c95207ee 100644
--- a/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml
+++ b/ci-scripts/xml_files/container_4g_rfsim_tdd_05MHz.xml
@@ -40,6 +40,7 @@
  030011
  030012
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -147,10 +148,18 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 4G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/4g_rfsimulator_tdd_05MHz</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_e1_rfsim.xml b/ci-scripts/xml_files/container_5g_e1_rfsim.xml
index 87827cbdf74a665eda4c37e53bc082f7a0581f09..fa8f47a558e18f3e0192819ea8c3c3a7179f4d4e 100644
--- a/ci-scripts/xml_files/container_5g_e1_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_e1_rfsim.xml
@@ -33,6 +33,7 @@
  000024
  020021
  100021
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -93,6 +94,7 @@
 
         <testCase id="100021">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_e1</yaml_path>
                 <d_retx_th>1,0,0,0</d_retx_th>
@@ -101,4 +103,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_f1_rfsim.xml b/ci-scripts/xml_files/container_5g_f1_rfsim.xml
index 56071f4b1b480e5340d03e98b0fc5739b357c088..a246727da1432bdc555a62a843df57e1370887d1 100644
--- a/ci-scripts/xml_files/container_5g_f1_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_f1_rfsim.xml
@@ -35,6 +35,7 @@
  030021
  030022
  100021
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -150,6 +151,7 @@
 
         <testCase id="100021">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_f1_rfsimulator</yaml_path>
                 <d_retx_th>30,30,100,100</d_retx_th>
@@ -158,4 +160,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_fdd_rfsim.xml b/ci-scripts/xml_files/container_5g_fdd_rfsim.xml
index e1aff907a9f455e2186adc26ad2592d4b3418751..a1454ed8bd082b646d84cfc1f31139d07481427a 100644
--- a/ci-scripts/xml_files/container_5g_fdd_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_fdd_rfsim.xml
@@ -35,6 +35,7 @@
  030011
  030012
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -119,6 +120,7 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_fdd_rfsimulator</yaml_path>
                 <d_retx_th>1,0,0,0</d_retx_th>
@@ -127,4 +129,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_l2sim_tdd.xml b/ci-scripts/xml_files/container_5g_l2sim_tdd.xml
index bef0a13e2d478fa43fb89846de44fd7355cc1c08..aa9fd2ece98ccbc9141578df682a70112131e6e6 100644
--- a/ci-scripts/xml_files/container_5g_l2sim_tdd.xml
+++ b/ci-scripts/xml_files/container_5g_l2sim_tdd.xml
@@ -35,6 +35,7 @@
  020001
  020002
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -113,6 +114,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_l2sim_tdd</yaml_path>
                 <d_retx_th>20,50,100,100</d_retx_th>
@@ -121,4 +123,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim.xml b/ci-scripts/xml_files/container_5g_rfsim.xml
index 0e1b1d371038dfec36f29b9bd6428a2339299552..edc9f1f30f0db28c0d568034c8596d48842f9fbf 100644
--- a/ci-scripts/xml_files/container_5g_rfsim.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim.xml
@@ -50,6 +50,7 @@
  333333
  020006
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -245,6 +246,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator</yaml_path>
                 <d_retx_th>1,0,0,0</d_retx_th>
@@ -253,4 +255,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_24prb.xml b/ci-scripts/xml_files/container_5g_rfsim_24prb.xml
index f25928ab326ac449da591a8cec2928aa58f6955e..92f853fa997be2bfc7454d67bc617ec04df93cc1 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_24prb.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_24prb.xml
@@ -35,6 +35,7 @@
  030001
  030002
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -119,6 +120,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_24prb</yaml_path>
                 <d_retx_th>1,0,0,0</d_retx_th>
@@ -127,4 +129,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_2x2.xml b/ci-scripts/xml_files/container_5g_rfsim_2x2.xml
index 7826a6e818721b41a7ab754ecf09b1bb45453593..67b2273a68ca731945b6eceb71e673d764155aa6 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_2x2.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_2x2.xml
@@ -35,6 +35,7 @@
  030001
  030002
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -119,6 +120,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_2x2</yaml_path>
                 <eNB_instance>0</eNB_instance>
@@ -127,4 +129,11 @@
                 <u_retx_th>1,0,0,0</u_retx_th>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml b/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml
index 31d9a04790162fdc16db21efef698f1d05502b18..07df4a751ee7144db384272c3da0d5cb3a83af89 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_f1_accelleran.xml
@@ -32,6 +32,7 @@
  020021
  100021
  100022
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -74,10 +75,18 @@
 
         <testCase id="100022">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_accelleran</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml b/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml
index c7d1824b4c49f89ee7a3e7cf4ac63284f0092569..8d43480c8eef203d13cf2001d2c29a0fca7bce0e 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_fdd_phytest.xml
@@ -35,6 +35,7 @@
  030011
  030012
  100011
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -119,6 +120,7 @@
 
         <testCase id="100011">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_fdd_phytest</yaml_path>
                 <d_retx_th>10,100,100,100</d_retx_th> <!-- phytest: will fail at start! -->
@@ -127,4 +129,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml b/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml
index 311ec9b0bc505fd610141ce00ca01a3ce74f3a87..ee88b9de87372c294eb51ef378f92ca7383cc9cd 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_fr2_32prb.xml
@@ -32,6 +32,7 @@
  020001
  020002
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -87,6 +88,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_fr2_32prb</yaml_path>
                 <d_retx_th>10,0,0,0</d_retx_th>
@@ -95,4 +97,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml b/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml
index 9966bd0e9093b15c437c90b7a89f6ecb5260da98..2a8147140d330e54110aa6e79c5832c8fac3faf3 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_ntn_geo.xml
@@ -34,6 +34,7 @@
  020001
  020002
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -95,10 +96,18 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_ntn_geo</yaml_path>
                 <eNB_instance>0</eNB_instance>
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml b/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml
index 8f1039f5cde2d325e968b2e8c34230c5acdefd9b..f3be815e301378c7b03e9f8b72429b120f2cc712 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_sidelink.xml
@@ -32,6 +32,7 @@
  000004
  000005
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -83,6 +84,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_sidelink</yaml_path>
                 <d_retx_th>1,0,0,0</d_retx_th>
@@ -91,4 +93,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml b/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml
index a169c78528a3870b5269dbc9c742e7c8fccc45e4..3b48f7b90160eea9f3b14837ab946b273b615b04 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_tdd_dora.xml
@@ -33,6 +33,8 @@
  020001
  020002
  100001
+ 004000
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -93,6 +95,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_tdd_dora</yaml_path>
                 <d_retx_th>0,0,0,0</d_retx_th>
@@ -101,4 +104,19 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="004000">
+                <class>Custom_Command</class>
+                <always_exec>true</always_exec>
+                <desc>Clean-Up any residual volume</desc>
+                <node>cacofonix</node>
+                <command>docker volume rm 5g_rfsimulator_tdd_dora_rrc.config</command>
+        </testCase>
+
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml b/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml
index 51b59d35f14982c484b54f1bcd5b6f81c7932ac0..cb4a9cd9f75b0877fdc64096ceee0ddd47f3c32c 100644
--- a/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml
+++ b/ci-scripts/xml_files/container_5g_rfsim_u0_25prb.xml
@@ -35,6 +35,7 @@
  030001
  030002
  100001
+ 222222
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -119,6 +120,7 @@
 
         <testCase id="100001">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy all OAI 5G stack</desc>
                 <yaml_path>ci-scripts/yaml_files/5g_rfsimulator_u0_25prb</yaml_path>
                 <d_retx_th>1,0,0,0</d_retx_th>
@@ -127,4 +129,11 @@
                 <eNB_serverId>0</eNB_serverId>
         </testCase>
 
+        <testCase id="222222">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml
index 268be0974c09f2fab7568fdf2d1556f748aeddf0..54261b35050b8a1234d3d63d6338994f25dee23c 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1.xml
@@ -54,6 +54,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1.xml
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>hutch</node>
         <command>sudo cpupower idle-set -E</command>
@@ -86,6 +87,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1.xml
 
     <testCase id="030201">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_05Mhz_tm1</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -99,6 +101,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -109,6 +112,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UEs</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml
index adfe8860d6e0650450637c438847c88517974950..3c47ffce7b5d6e5a83cdca7fda229f66f9fd0791 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_if4_5.xml
@@ -53,6 +53,7 @@
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>hutch</node>
         <command>sudo cpupower idle-set -E</command>
@@ -94,6 +95,7 @@
 
     <testCase id="030231">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy RCC/RRU</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_05Mhz_if4.5</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -107,6 +109,7 @@
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -117,6 +120,7 @@
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UEs</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml
index 673bf656092441b01347ea2ad2cc353cf9b05ffe..2674c4198d0f135e9e0795d9cd95688b7b2c6bb3 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_05Mhz_tm1_no_rrc_activity.xml
@@ -52,6 +52,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1_rrc_inactivity_no_flexran.xm
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>hutch</node>
         <command>sudo cpupower idle-set -E</command>
@@ -72,6 +73,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1_rrc_inactivity_no_flexran.xm
 
     <testCase id="030202">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_05Mhz_tm1_no_rrc_activity</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -85,6 +87,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1_rrc_inactivity_no_flexran.xm
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -95,6 +98,7 @@ Replaces xml_files/enb_usrp210_band7_test_05mhz_tm1_rrc_inactivity_no_flexran.xm
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml
index 472122d2e48d5ec57f2cce4064b6ddf27346c862..ea95961cbaa25aa6c41a5ec30e39f0e0ae0aee4f 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1.xml
@@ -54,6 +54,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>hutch</node>
         <command>sudo cpupower idle-set -E</command>
@@ -80,6 +81,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
 
     <testCase id="030211">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_10Mhz_tm1</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -93,6 +95,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -103,6 +106,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml
index 1534150b01e8bea2294e23b85f3b3393af5f1e2c..9f927db4d478433952b8d58519acb81aa4c2aee4 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_cdrx.xml
@@ -53,6 +53,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="200000">
             <class>Custom_Command</class>
+            <always_exec>true</always_exec>
             <desc>Enable Sleep States</desc>
             <node>hutch</node>
             <command>sudo cpupower idle-set -E</command>
@@ -73,6 +74,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
 
     <testCase id="030212">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_10Mhz_tm1_cdrx</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -86,6 +88,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -96,6 +99,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
index 0e58e6b6ed5016d62b51f55e193d33db94f98e90..cefa6cd5c1bb45b4e2e4093af2ba2117b55922f1 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_10Mhz_tm1_oaiue.xml
@@ -41,6 +41,8 @@
 030211
 200000
 200001
+222222
+333333
     </TestCaseRequestedList>
     <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -70,12 +72,14 @@
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States (hutch)</desc>
         <node>hutch</node>
         <command>sudo cpupower idle-set -E</command>
     </testCase>
     <testCase id="200001">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States (carabe)</desc>
         <node>carabe</node>
         <command>sudo cpupower idle-set -E</command>
@@ -121,6 +125,7 @@
 
     <testCase id="030211">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_10Mhz_tm1_magma</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -129,6 +134,7 @@
 
     <testCase id="030411">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy LTE-UE</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_10Mhz_oai_ue_magma</yaml_path>
         <eNB_instance>1</eNB_instance>
@@ -180,4 +186,18 @@
         <svr_id>nano-cn4g</svr_id>
     </testCase>
 
+    <testCase id="222222">
+        <class>Clean_Test_Server_Images</class>
+        <always_exec>true</always_exec>
+        <desc>Clean Test Images on eNB Test Server</desc>
+        <test_svr_id>0</test_svr_id>
+    </testCase>
+
+    <testCase id="333333">
+        <class>Clean_Test_Server_Images</class>
+        <always_exec>true</always_exec>
+        <desc>Clean Test Images on LTE-UE Test Server</desc>
+        <test_svr_id>1</test_svr_id>
+    </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml
index 48aa606fa414fd7076020921b1365631f32fc4f0..07960f3a37c8522965bbadccd3281dbec5902ad3 100644
--- a/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_fdd_20Mhz_tm1.xml
@@ -53,6 +53,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="200000">
             <class>Custom_Command</class>
+            <always_exec>true</always_exec>
             <desc>Enable Sleep States</desc>
             <node>hutch</node>
             <command>sudo cpupower idle-set -E</command>
@@ -79,6 +80,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
 
     <testCase id="030221">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_fdd_20Mhz_tm1</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -92,6 +94,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -102,6 +105,7 @@ Replaces xml_files/enb_usrp210_band7_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml
index a512156ff5a5b808f3dd33457c542afabbce6ed1..52a8df31464807a44cfa2e39cc58740629c6a7ca 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1.xml
@@ -54,6 +54,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm1.xml
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>starsky</node>
         <command>sudo cpupower idle-set -E</command>
@@ -87,6 +88,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm1.xml
 
     <testCase id="030204">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_tdd_05Mhz_tm1</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -100,6 +102,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm1.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -110,6 +113,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm1.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml
index 827675f3fb73fb3efd638d26d5133036b856f937..62c5e5e4760a0be2de025c2acdb6e3cc1c5e3282 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm1_if4_5.xml
@@ -33,7 +33,6 @@
 030135
 040301 040532 040631 040632 040634 040635 040681 040682 040684 040685 040401 040201
 030231
-040101
 200000
     </TestCaseRequestedList>
     <TestCaseExclusionList></TestCaseExclusionList>
@@ -53,6 +52,7 @@
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>starsky</node>
         <command>sudo cpupower idle-set -E</command>
@@ -95,6 +95,7 @@
 
     <testCase id="030231">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy RRU/RCC</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_tdd_05Mhz_if4.5</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -108,6 +109,7 @@
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -118,6 +120,7 @@
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml
index 77a13d9407e882ea0b3be7e3c90362387741cc45..9111f00365f7804956f8ce9482d0306cab711228 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_05Mhz_tm2.xml
@@ -52,6 +52,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm2.xml
     </testCase>
     <testCase id="200000">
             <class>Custom_Command</class>
+            <always_exec>true</always_exec>
             <desc>Enable Sleep States</desc>
             <node>starsky</node>
             <command>sudo cpupower idle-set -E</command>
@@ -78,6 +79,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm2.xml
 
     <testCase id="030205">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_tdd_05Mhz_tm2</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -91,6 +93,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm2.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -101,6 +104,7 @@ Replaces xml_files/enb_usrp210_band40_test_05mhz_tm2.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml
index ed37d24eae452806342485edc46fefe62d456616..574e75d78032badb41ef7448881c03028cb61246 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_10Mhz_tm1.xml
@@ -52,6 +52,7 @@ Replaces xml_files/enb_usrp210_band40_test_10mhz_tm1.xml
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>starsky</node>
         <command>sudo cpupower idle-set -E</command>
@@ -78,6 +79,7 @@ Replaces xml_files/enb_usrp210_band40_test_10mhz_tm1.xml
 
     <testCase id="030214">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_tdd_10Mhz_tm1</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -91,6 +93,7 @@ Replaces xml_files/enb_usrp210_band40_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -101,6 +104,7 @@ Replaces xml_files/enb_usrp210_band40_test_10mhz_tm1.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml
index 1a9983e67e51ef7d2d3cc077310426459b2a2432..516bc484445e94c467766dd155630affcff4215e 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1.xml
@@ -52,6 +52,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1.xml
     </testCase>
     <testCase id="200000">
             <class>Custom_Command</class>
+            <always_exec>true</always_exec>
             <desc>Enable Sleep States</desc>
             <node>starsky</node>
             <command>sudo cpupower idle-set -E</command>
@@ -78,6 +79,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1.xml
 
     <testCase id="030224">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_tdd_20Mhz_tm1</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -91,6 +93,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -101,6 +104,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml
index e3f0f4914096c150a06c70986ace4772de0b0abc..8156eb517dfcdb72bf6a94901833217c5e3c7d97 100644
--- a/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml
+++ b/ci-scripts/xml_files/container_lte_b200_tdd_20Mhz_tm1_default_scheduler.xml
@@ -53,6 +53,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1_default_scheduler.xml
     </testCase>
     <testCase id="200000">
         <class>Custom_Command</class>
+        <always_exec>true</always_exec>
         <desc>Enable Sleep States</desc>
         <node>starsky</node>
         <command>sudo cpupower idle-set -E</command>
@@ -79,6 +80,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1_default_scheduler.xml
 
     <testCase id="030225">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
         <yaml_path>ci-scripts/yaml_files/lte_b200_tdd_20Mhz_tm1_default_scheduler</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -92,6 +94,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1_default_scheduler.xml
     </testCase>
     <testCase id="040201">
         <class>Terminate_UE</class>
+        <always_exec>true</always_exec>
         <desc>Terminate UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
@@ -102,6 +105,7 @@ Replaces xml_files/enb_usrp210_band40_test_20mhz_tm1_default_scheduler.xml
     </testCase>
     <testCase id="040401">
         <class>Detach_UE</class>
+        <always_exec>true</always_exec>
         <desc>Detach UE</desc>
         <id>adb_ue_1 adb_ue_2</id>
     </testCase>
diff --git a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml
index 8316645417f6975fdcda26705fb96ab3474bedaf..cfae0e6188d0a49caf549ad91228c0193bac757b 100644
--- a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml
+++ b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm1.xml
@@ -40,6 +40,7 @@
 070001
 010010
 030201
+333333
 
 </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
@@ -130,12 +131,14 @@
 
   <testCase id="010010">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>up2</id>
   </testCase>
 
   <testCase id="030201">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/lte_n3xx_tdd_2x2_tm1</yaml_path>
     <eNB_instance>0</eNB_instance>
@@ -146,5 +149,12 @@
     -->
   </testCase>
 
+    <testCase id="333333">
+        <class>Clean_Test_Server_Images</class>
+        <always_exec>true</always_exec>
+        <desc>Clean Test Images</desc>
+        <test_svr_id>0</test_svr_id>
+    </testCase>
+
 </testCaseList>
 
diff --git a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml
index 96baab0793925be82f10c507b83fced7984380d7..1df5ea169c3478608b90d6f33b46e7ace1a01a7c 100644
--- a/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml
+++ b/ci-scripts/xml_files/container_lte_n3xx_tdd_2x2_tm2.xml
@@ -40,6 +40,7 @@
 071001
 010010
 031201
+333333
 
 </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
@@ -130,12 +131,14 @@
 
   <testCase id="010010">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>up2</id>
   </testCase>
 
   <testCase id="031201">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/lte_n3xx_tdd_2x2_tm2</yaml_path>
     <eNB_instance>0</eNB_instance>
@@ -146,5 +149,13 @@
     -->
   </testCase>
 
+    <testCase id="333333">
+        <class>Clean_Test_Server_Images</class>
+        <always_exec>true</always_exec>
+        <desc>Clean Test Images</desc>
+        <test_svr_id>0</test_svr_id>
+    </testCase>
+
+
 </testCaseList>
 
diff --git a/ci-scripts/xml_files/container_nsa_b200_quectel.xml b/ci-scripts/xml_files/container_nsa_b200_quectel.xml
index de6098209fe04ee5e5a326f0b6578abedc881d8f..7e831b24542894a25460856f94c5f2d65cd8423e 100644
--- a/ci-scripts/xml_files/container_nsa_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_nsa_b200_quectel.xml
@@ -49,6 +49,8 @@
  030201
  300000
  600000
+ 222220
+ 222221
 	</TestCaseRequestedList>
 	<TestCaseExclusionList></TestCaseExclusionList>
 
@@ -81,6 +83,7 @@
 	</testCase>
 	<testCase id="300000">
 		<class>Custom_Command</class>
+    <always_exec>true</always_exec>
 		<desc>Enable Sleep States (nepes)</desc>
 		<node>nepes</node>
 		<command>sudo cpupower idle-set -E</command>
@@ -93,6 +96,7 @@
 	</testCase>
 	<testCase id="600000">
 		<class>Custom_Command</class>
+    <always_exec>true</always_exec>
 		<desc>Enable Sleep States (ofqot)</desc>
 		<node>ofqot</node>
 		<command>sudo cpupower idle-set -E</command>
@@ -105,6 +109,7 @@
 	</testCase>
 	<testCase id="010002">
 		<class>Terminate_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate Quectel</desc>
 		<id>idefix</id>
 	</testCase>
@@ -115,6 +120,7 @@
   	</testCase>
 	<testCase id= "010010">
 		<class>Detach_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Detach UE</desc>
 		<id>idefix</id>
 	</testCase>
@@ -224,6 +230,7 @@
 
     <testCase id="030201">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy eNB</desc>
 		<yaml_path>ci-scripts/yaml_files/nsa_b200_enb</yaml_path>
         <eNB_instance>0</eNB_instance>
@@ -232,6 +239,7 @@
 
     <testCase id="030202">
         <class>Undeploy_Object</class>
+        <always_exec>true</always_exec>
         <desc>Undeploy gNB</desc>
 		<yaml_path>ci-scripts/yaml_files/nsa_b200_gnb</yaml_path>
         <eNB_instance>1</eNB_instance>
@@ -240,5 +248,19 @@
         <u_retx_th>10,100,100,100</u_retx_th>
     </testCase>
 
+	<testCase id="222220">
+		<class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+		<desc>Clean Test Images on Test Server</desc>
+		<test_svr_id>0</test_svr_id>
+	</testCase>
+
+	<testCase id="222221">
+		<class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+		<desc>Clean Test Images on Test Server</desc>
+		<test_svr_id>1</test_svr_id>
+	</testCase>
+
 </testCaseList>
 
diff --git a/ci-scripts/xml_files/container_sa_aerial_quectel.xml b/ci-scripts/xml_files/container_sa_aerial_quectel.xml
index 50a1a02256fcf80243349634f1809d8de106edf1..43fdf4b65b29b0883b173e5913e017196fed1540 100644
--- a/ci-scripts/xml_files/container_sa_aerial_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_aerial_quectel.xml
@@ -36,6 +36,7 @@
                 000033
                 000222
                 222222
+                333333
         </TestCaseRequestedList>
         <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -107,12 +108,14 @@
 
         <testCase id="000222">
                 <class>Detach_UE</class>
+                <always_exec>true</always_exec>
                 <desc>Detach Quectel</desc>
                 <id>up2-aerial</id>
         </testCase>
 
         <testCase id="222222">
                 <class>Undeploy_Object</class>
+                <always_exec>true</always_exec>
                 <desc>Undeploy gNB</desc>
                 <yaml_path>ci-scripts/yaml_files/sa_gnb_aerial</yaml_path>
                 <eNB_instance>0</eNB_instance>
@@ -120,5 +123,13 @@
                 <d_retx_th>20,100,100,100</d_retx_th>
                 <u_retx_th>20,100,100,100</u_retx_th>
         </testCase>
+
+        <testCase id="333333">
+                <class>Clean_Test_Server_Images</class>
+                <always_exec>true</always_exec>
+                <desc>Clean Test Images on Test Server</desc>
+                <test_svr_id>0</test_svr_id>
+        </testCase>
+
 </testCaseList>
 
diff --git a/ci-scripts/xml_files/container_sa_aw2s_asue.xml b/ci-scripts/xml_files/container_sa_aw2s_asue.xml
index 490033091179b87d246f23e7748d7149f6ef95a8..3929687f1b9d27fb888b63e84e27dbcf45e6778a 100644
--- a/ci-scripts/xml_files/container_sa_aw2s_asue.xml
+++ b/ci-scripts/xml_files/container_sa_aw2s_asue.xml
@@ -56,6 +56,7 @@
     004000
     000002
     030000
+    333333
   </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -242,12 +243,14 @@
 
   <testCase id="003000">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>amarisoft_ue_1 amarisoft_ue_2 amarisoft_ue_3 amarisoft_ue_4 amarisoft_ue_5 amarisoft_ue_6 amarisoft_ue_7 amarisoft_ue_8 amarisoft_ue_9 amarisoft_ue_10 amarisoft_ue_11 amarisoft_ue_12 amarisoft_ue_13 amarisoft_ue_14 amarisoft_ue_15 amarisoft_ue_16</id>
   </testCase>
 
   <testCase id="004000">
     <class>Terminate_UE</class>
+    <always_exec>true</always_exec>
     <desc>Terminate UE</desc>
     <id>amarisoft_ue</id>
   </testCase>
@@ -260,10 +263,18 @@
 
   <testCase id="030000">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/sa_aw2s_gnb</yaml_path>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
 
+  <testCase id="333333">
+    <class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+    <desc>Clean Test Images on Test Server</desc>
+    <test_svr_id>0</test_svr_id>
+  </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_sa_b200_quectel.xml b/ci-scripts/xml_files/container_sa_b200_quectel.xml
index acc9e15e5c26c5271709187df234e34ea94d9975..4776bd784e523d77ee3188726cd74769139175c6 100644
--- a/ci-scripts/xml_files/container_sa_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_b200_quectel.xml
@@ -70,6 +70,7 @@
   </testCase>
   <testCase id="200000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States</desc>
     <node>ofqot</node>
     <command>sudo cpupower idle-set -E</command>
@@ -82,6 +83,7 @@
   </testCase>
   <testCase id="010002">
     <class>Terminate_UE</class>
+    <always_exec>true</always_exec>
     <desc>Terminate Quectel</desc>
     <id>idefix</id>
   </testCase>
@@ -92,6 +94,7 @@
   </testCase>
   <testCase id="010010">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>idefix</id>
   </testCase>
@@ -203,6 +206,7 @@
 
   <testCase id="030201">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/sa_b200_gnb</yaml_path>
     <eNB_instance>0</eNB_instance>
diff --git a/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml b/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml
index f31ef7e7eb36f0bd5efb99d53c38f6ca8099d40e..4e4eab92c17798450f87f05fd2d52cb575d8dab6 100644
--- a/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_e1_b200_quectel.xml
@@ -49,6 +49,7 @@
     310002
     330201
     200000
+    222222
   </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -66,6 +67,7 @@
   </testCase>
   <testCase id="310002">
     <class>Terminate_UE</class>
+    <always_exec>true</always_exec>
     <desc>Terminate Quectel</desc>
     <id>idefix</id>
   </testCase>
@@ -76,6 +78,7 @@
   </testCase>
   <testCase id="310011">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach Quectel</desc>
     <id>idefix</id>
   </testCase>
@@ -118,6 +121,7 @@
   </testCase>
   <testCase id="200000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States</desc>
     <node>ofqot</node>
     <command>sudo cpupower idle-set -E</command>
@@ -201,7 +205,8 @@
 
   <testCase id="330201">
     <class>Undeploy_Object</class>
-    <desc>Undeploy CU-DU</desc>
+    <always_exec>true</always_exec>
+    <desc>Undeploy CUCP/CU-UP/DU</desc>
     <yaml_path>ci-scripts/yaml_files/sa_e1_b200_gnb</yaml_path>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
@@ -209,5 +214,12 @@
     <u_retx_th>10,100,100,100</u_retx_th>
   </testCase>
 
+  <testCase id="222222">
+    <class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+    <desc>Clean Test Images on Test Server</desc>
+    <test_svr_id>0</test_svr_id>
+  </testCase>
+
 </testCaseList>
 
diff --git a/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml b/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml
index 1b3c9baa33a60ba429831d15c6854d2520c01e7f..4cce964633e6419903461b94f456a8bbbe279bc6 100644
--- a/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_f1_b200_quectel.xml
@@ -66,6 +66,7 @@
   </testCase>
   <testCase id="110002">
     <class>Terminate_UE</class>
+    <always_exec>true</always_exec>
     <desc>Terminate Quectel</desc>
     <id>idefix</id>
   </testCase>
@@ -76,6 +77,7 @@
   </testCase>
   <testCase id="110011">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach Quectel</desc>
     <id>idefix</id>
   </testCase>
@@ -110,6 +112,7 @@
   </testCase>
   <testCase id="200000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States</desc>
     <node>ofqot</node>
     <command>sudo cpupower idle-set -E</command>
@@ -226,6 +229,7 @@
 
   <testCase id="130201">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy CU-DU</desc>
     <yaml_path>ci-scripts/yaml_files/sa_f1_b200_gnb</yaml_path>
     <eNB_instance>0</eNB_instance>
diff --git a/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml b/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml
index 3d2a7a93875742598797435a1553e9f71f8c36b1..b81ef51d5ba7837ce9bb2b9ad66e6919d275de8f 100644
--- a/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml
+++ b/ci-scripts/xml_files/container_sa_fhi72_vvdn_up2.xml
@@ -39,6 +39,8 @@
     103000
     100002
     130000
+    777777
+    888888
   </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -127,6 +129,7 @@
 
   <testCase id="103000">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>up2-fhi72</id>
   </testCase>
@@ -139,10 +142,28 @@
 
   <testCase id="130000">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/sa_fhi_7.2_vvdn_gnb</yaml_path>
     <eNB_instance>0</eNB_instance>
     <eNB_serverId>0</eNB_serverId>
   </testCase>
 
+  <testCase id="777777">
+    <class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+    <desc>Clean Test Images on Test Server</desc>
+    <test_svr_id>0</test_svr_id>
+  </testCase>
+
+  <testCase id="888888">
+    <class>Custom_Command</class>
+    <always_exec>true</always_exec>
+    <desc>Set CPU to idle state, set kernel parameters to default values</desc>
+    <node>cacofonix</node>
+    <command>/opt/FHI7.2/setup_cleanup.sh</command>
+    <command_fail>yes</command_fail>
+  </testCase>
+
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml b/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml
index 272582a46ead7d8b157d14f362c97bad3a79a878..c713e5a431dccdb65fbe10fe23233fa63dbc65a2 100644
--- a/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_n310_2X2_100MHz_quectel.xml
@@ -39,6 +39,7 @@
     000001
     040201
     200000
+    033333
   </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -58,6 +59,7 @@
 
   <testCase id="200000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States</desc>
     <node>matix</node>
     <command>sudo cpupower idle-set -E</command>
@@ -71,6 +73,7 @@
 
   <testCase id="010010">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>up2</id>
   </testCase>
@@ -139,6 +142,7 @@
 
   <testCase id="040201">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/5g_sa_n310_2x2_100MHz</yaml_path>
     <eNB_instance>0</eNB_instance>
@@ -148,5 +152,12 @@
     <u_retx_th>10,100,100,100</u_retx_th>
   </testCase>
 
+  <testCase id="033333">
+    <class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+    <desc>Clean Test Images on Test Server</desc>
+    <test_svr_id>0</test_svr_id>
+  </testCase>
+
 </testCaseList>
 
diff --git a/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml b/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml
index 4c619255f11c8ede30dbf3dd2fcb5cd57fed0b69..fc0baadaca4b4f9899e4008638790700ea8278f3 100644
--- a/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_n310_2X2_60MHz_quectel.xml
@@ -39,6 +39,7 @@
     000001
     030201
     200000
+    333333
   </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -58,6 +59,7 @@
 
   <testCase id="200000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States</desc>
     <node>matix</node>
     <command>sudo cpupower idle-set -E</command>
@@ -71,6 +73,7 @@
 
   <testCase id="010010">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>up2</id>
   </testCase>
@@ -139,6 +142,7 @@
 
   <testCase id="030201">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/5g_sa_n310_2x2_60MHz</yaml_path>
     <eNB_instance>0</eNB_instance>
@@ -148,5 +152,12 @@
     <u_retx_th>10,100,100,100</u_retx_th>
   </testCase>
 
+  <testCase id="333333">
+    <class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+    <desc>Clean Test Images on Test Server</desc>
+    <test_svr_id>0</test_svr_id>
+  </testCase>
+
 </testCaseList>
 
diff --git a/ci-scripts/xml_files/container_sa_n310_nrue.xml b/ci-scripts/xml_files/container_sa_n310_nrue.xml
index a44c70332217bb999a0e7b7737ac3d7f599f515d..f00a452403a47d088eefcd68dff1f98683ffc1b6 100644
--- a/ci-scripts/xml_files/container_sa_n310_nrue.xml
+++ b/ci-scripts/xml_files/container_sa_n310_nrue.xml
@@ -36,6 +36,8 @@
     000100
     000200
     040001 040000
+    333333
+    444444
   </TestCaseRequestedList>
   <TestCaseExclusionList></TestCaseExclusionList>
 
@@ -139,6 +141,7 @@
 
   <testCase id="040000">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/5g_sa_n310_gnb</yaml_path>
     <eNB_instance>0</eNB_instance>
@@ -149,10 +152,25 @@
   
   <testCase id="040001">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy nr UE</desc>
     <yaml_path>ci-scripts/yaml_files/5g_sa_n310_nrue</yaml_path>
     <eNB_instance>1</eNB_instance>
     <eNB_serverId>1</eNB_serverId>
   </testCase>
 
+  <testCase id="333333">
+    <class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+    <desc>Clean Test Images on Test Server</desc>
+    <test_svr_id>0</test_svr_id>
+  </testCase>
+
+  <testCase id="444444">
+    <class>Clean_Test_Server_Images</class>
+    <always_exec>true</always_exec>
+    <desc>Clean Test Images on Test Server</desc>
+    <test_svr_id>1</test_svr_id>
+  </testCase>
+
 </testCaseList>
diff --git a/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml b/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml
index 425edc12ee87bafb282360fe879b51076a527830..d0dc59f3ccf84d25ec5a69be20a556e77ac7f9e4 100644
--- a/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml
+++ b/ci-scripts/xml_files/container_sa_sc_b200_quectel.xml
@@ -64,6 +64,7 @@
   </testCase>
   <testCase id="400000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States</desc>
     <node>ofqot</node>
     <command>sudo cpupower idle-set -E</command>
@@ -76,6 +77,7 @@
   </testCase>
   <testCase id="210002">
     <class>Terminate_UE</class>
+    <always_exec>true</always_exec>
     <desc>Terminate Quectel</desc>
     <id>idefix</id>
   </testCase>
@@ -86,6 +88,7 @@
   </testCase>
   <testCase id="210010">
     <class>Detach_UE</class>
+    <always_exec>true</always_exec>
     <desc>Detach UE</desc>
     <id>idefix</id>
   </testCase>
@@ -197,6 +200,7 @@
 
   <testCase id="230201">
     <class>Undeploy_Object</class>
+    <always_exec>true</always_exec>
     <desc>Undeploy gNB</desc>
     <yaml_path>ci-scripts/yaml_files/sa_sc_b200_gnb</yaml_path>
     <eNB_instance>0</eNB_instance>
diff --git a/ci-scripts/xml_files/fr1_nsa_2x2_quectel.xml b/ci-scripts/xml_files/fr1_nsa_2x2_quectel.xml
index 20f502e9acd4953accb9c5b785d34a0bf3b9252c..caea61f3b4993cd5ef5cd5f8edae8b7bf27e2b94 100644
--- a/ci-scripts/xml_files/fr1_nsa_2x2_quectel.xml
+++ b/ci-scripts/xml_files/fr1_nsa_2x2_quectel.xml
@@ -57,6 +57,7 @@
 	</testCase>
 	<testCase id="200000">
 		<class>Custom_Command</class>
+    <always_exec>true</always_exec>
 		<desc>Enable Sleep States (obelix)</desc>
 		<node>obelix</node>
 		<command>sudo cpupower idle-set -E</command>
@@ -69,6 +70,7 @@
 	</testCase>
 	<testCase id="800000">
 		<class>Custom_Command</class>
+    <always_exec>true</always_exec>
 		<desc>Enable Sleep States (asterix)</desc>
 		<node>asterix</node>
 		<command>sudo cpupower idle-set -E</command>
@@ -81,6 +83,7 @@
 	</testCase>
 	<testCase id="010002">
 		<class>Terminate_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate Quectel</desc>
 		<id>nrmodule2_quectel</id>
 	</testCase>
@@ -91,6 +94,7 @@
 	</testCase>
 	<testCase id="010011">
 		<class>Detach_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Detach Quectel</desc>
 		<id>nrmodule2_quectel</id>
 	</testCase>
@@ -183,6 +187,7 @@
 
 	<testCase id="080000">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate eNB</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
@@ -191,6 +196,7 @@
 
 	<testCase id="080001">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate gNB</desc>
 		<eNB_instance>1</eNB_instance>
 		<eNB_serverId>1</eNB_serverId>
diff --git a/ci-scripts/xml_files/fr1_nsa_2x2_quectel_attach_detach.xml b/ci-scripts/xml_files/fr1_nsa_2x2_quectel_attach_detach.xml
index b089d1d75c0ab4fa0c79a031aaef9944464d8d74..170bb6443b57d6fa4e6df1ed3a4d9b589b14c656 100644
--- a/ci-scripts/xml_files/fr1_nsa_2x2_quectel_attach_detach.xml
+++ b/ci-scripts/xml_files/fr1_nsa_2x2_quectel_attach_detach.xml
@@ -62,6 +62,7 @@
 	</testCase>
 	<testCase id="010002">
 		<class>Terminate_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate Quectel</desc>
 		<id>nrmodule2_quectel</id>
 	</testCase>
@@ -84,6 +85,7 @@
   </testCase>
   <testCase id="200000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States (asterix)</desc>
     <node>asterix</node>
     <command>sudo cpupower idle-set -E</command>
@@ -96,6 +98,7 @@
   </testCase>
   <testCase id="400000">
     <class>Custom_Command</class>
+    <always_exec>true</always_exec>
     <desc>Enable Sleep States (obelix)</desc>
     <node>obelix</node>
     <command>sudo cpupower idle-set -E</command>
@@ -151,6 +154,7 @@
 
 	<testCase id="080000">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate eNB</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
@@ -159,6 +163,7 @@
 
 	<testCase id="080001">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate gNB</desc>
 		<eNB_instance>1</eNB_instance>
 		<eNB_serverId>1</eNB_serverId>
diff --git a/ci-scripts/xml_files/fr1_nsa_quectel.xml b/ci-scripts/xml_files/fr1_nsa_quectel.xml
index 142e4014dd16234e15e67a11d697b1cb12cb530b..755f3ad96982b3171572453ebcbd51ce7f033a18 100644
--- a/ci-scripts/xml_files/fr1_nsa_quectel.xml
+++ b/ci-scripts/xml_files/fr1_nsa_quectel.xml
@@ -91,6 +91,7 @@
 	</testCase>
 	<testCase id="010002">
 		<class>Terminate_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate Quectel</desc>
 		<id>idefix</id>
 	</testCase>
@@ -101,6 +102,7 @@
 	</testCase>
 	<testCase id="010011">
 		<class>Detach_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Detach Quectel</desc>
 		<id>idefix</id>
 	</testCase>
@@ -174,6 +176,7 @@
 
 	<testCase id="080000">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate eNB</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
@@ -182,6 +185,7 @@
 
 	<testCase id="080001">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate gNB</desc>
 		<eNB_instance>1</eNB_instance>
 		<eNB_serverId>1</eNB_serverId>
diff --git a/ci-scripts/xml_files/fr1_nsa_quectel_attach_detach.xml b/ci-scripts/xml_files/fr1_nsa_quectel_attach_detach.xml
index df8b1c049d6bd398cc7710fc10e2546e5033c1eb..66bcf54be283919f1ce5a26f46e68a667a6b55bd 100644
--- a/ci-scripts/xml_files/fr1_nsa_quectel_attach_detach.xml
+++ b/ci-scripts/xml_files/fr1_nsa_quectel_attach_detach.xml
@@ -57,6 +57,7 @@
 	</testCase>
 	<testCase id="010002">
 		<class>Terminate_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate Quectel</desc>
 		<id>idefix</id>
 	</testCase>
@@ -139,6 +140,7 @@
 
 	<testCase id="080000">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate eNB</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
@@ -147,6 +149,7 @@
 
 	<testCase id="080001">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate gNB</desc>
 		<eNB_instance>1</eNB_instance>
 		<eNB_serverId>1</eNB_serverId>
diff --git a/ci-scripts/xml_files/fr1_nsa_quectel_long.xml b/ci-scripts/xml_files/fr1_nsa_quectel_long.xml
index 05fbcc4ab6de4dae3517b7b91a5751d1f77f8dac..aebf6bf6688622490ef1316ae8bd0ab32bcb6992 100644
--- a/ci-scripts/xml_files/fr1_nsa_quectel_long.xml
+++ b/ci-scripts/xml_files/fr1_nsa_quectel_long.xml
@@ -53,6 +53,7 @@
 
 	<testCase id="010002">
 		<class>Terminate_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate Quectel</desc>
 		<id>idefix</id>
 	</testCase>
@@ -63,6 +64,7 @@
 	</testCase>
   <testCase id="010011">
 		<class>Detach_UE</class>
+    <always_exec>true</always_exec>
 		<desc>Detach Quectel</desc>
 		<id>idefix</id>
 	</testCase>
@@ -136,6 +138,7 @@
 
 	<testCase id="080000">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate eNB</desc>
 		<eNB_instance>0</eNB_instance>
 		<eNB_serverId>0</eNB_serverId>
@@ -144,6 +147,7 @@
 
 	<testCase id="080001">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate gNB</desc>
 		<eNB_instance>1</eNB_instance>
 		<eNB_serverId>1</eNB_serverId>
diff --git a/ci-scripts/xml_files/gnb_phytest_usrp_run.xml b/ci-scripts/xml_files/gnb_phytest_usrp_run.xml
index 3bf54786b5609db4ab8181206fca9ee859ddd67e..88f5079b685901bd46441df44a30a844741094ee 100644
--- a/ci-scripts/xml_files/gnb_phytest_usrp_run.xml
+++ b/ci-scripts/xml_files/gnb_phytest_usrp_run.xml
@@ -36,6 +36,7 @@
 	</testCase>
 	 <testCase id = "200000">
 		<class>Custom_Command</class>
+    <always_exec>true</always_exec>
 		<desc>Enable Sleep States</desc>
 		<node>caracal</node>
 		<command>sudo cpupower idle-set -E</command>
@@ -60,6 +61,7 @@
 
 	<testCase id="090109">
 		<class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
 		<desc>Terminate gNB</desc>
 		<air_interface>NR</air_interface>
 	</testCase>
diff --git a/ci-scripts/xml_files/gnb_phytest_usrp_run_100_2x2.xml b/ci-scripts/xml_files/gnb_phytest_usrp_run_100_2x2.xml
index daea0f4456e00a3cc5f1cb2db943f3b81dc3c49b..f81d747bfee9fec223603258483df9740e9a73e8 100644
--- a/ci-scripts/xml_files/gnb_phytest_usrp_run_100_2x2.xml
+++ b/ci-scripts/xml_files/gnb_phytest_usrp_run_100_2x2.xml
@@ -36,6 +36,7 @@
   </testCase>
   <testCase id="200000">
 	  <class>Custom_Command</class>
+    <always_exec>true</always_exec>
 	  <desc>Enable Sleep States</desc>
 	  <node>caracal</node>
 	  <command>sudo cpupower idle-set -E</command>
@@ -60,6 +61,7 @@
 
   <testCase id="390109">
     <class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
     <desc>Terminate gNB</desc>
     <air_interface>NR</air_interface>
   </testCase>
diff --git a/ci-scripts/xml_files/gnb_phytest_usrp_run_60.xml b/ci-scripts/xml_files/gnb_phytest_usrp_run_60.xml
index b436e79b179fbc7056a63904862f16d6471c946b..4b0fec92e29674ba62fb234fcffc1fa4d40981d1 100644
--- a/ci-scripts/xml_files/gnb_phytest_usrp_run_60.xml
+++ b/ci-scripts/xml_files/gnb_phytest_usrp_run_60.xml
@@ -36,6 +36,7 @@
   </testCase>
   <testCase id = "200000">
 	  <class>Custom_Command</class>
+    <always_exec>true</always_exec>
 	  <desc>Enable Sleep States</desc>
 	  <node>caracal</node>
 	  <command>sudo cpupower idle-set -E</command>
@@ -60,6 +61,7 @@
 
   <testCase id="190109">
     <class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
     <desc>Terminate gNB</desc>
     <air_interface>NR</air_interface>
   </testCase>
diff --git a/ci-scripts/xml_files/gnb_phytest_usrp_run_60_2x2.xml b/ci-scripts/xml_files/gnb_phytest_usrp_run_60_2x2.xml
index e6aeb6cdeef8b1dca11507817a4de17bbb974c9d..f9e298127f010b4d0105a9d8411a864998d7c7f4 100644
--- a/ci-scripts/xml_files/gnb_phytest_usrp_run_60_2x2.xml
+++ b/ci-scripts/xml_files/gnb_phytest_usrp_run_60_2x2.xml
@@ -36,6 +36,7 @@
   </testCase>
   <testCase id="200000">
 	  <class>Custom_Command</class>
+    <always_exec>true</always_exec>
 	  <desc>Enable Sleep States</desc>
 	  <node>caracal</node>
 	  <command>sudo cpupower idle-set -E</command>
@@ -60,6 +61,7 @@
 
   <testCase id="290109">
     <class>Terminate_eNB</class>
+    <always_exec>true</always_exec>
     <desc>Terminate gNB</desc>
     <air_interface>NR</air_interface>
   </testCase>