From df32ea4046642a09eb5c0bce06e03c3193a01ad8 Mon Sep 17 00:00:00 2001
From: alexm <alexm@verdnatura.es>
Date: Wed, 19 Feb 2025 07:59:34 +0100
Subject: [PATCH] ci: refs #6695 streamline Cypress E2E test execution in
 Jenkinsfile and improve error handling

---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 734c807c5d6..30a22b9cd3d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -171,9 +171,9 @@ pipeline {
 def cleanDockerE2E() {
     script {
         sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down || true"
-        if (containerId) {
-            sh "docker rm ${containerId} || true"
-        }
+        // if (containerId) {
+        //     sh "docker rm ${containerId} || true"
+        // }
     }
 }