diff --git a/Jenkinsfile b/Jenkinsfile
index 2e6827fa655..734c807c5d6 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -66,25 +66,25 @@ pipeline {
                 sh 'pnpm install --prefer-offline'
             }
         }
-        stage('Test: Unit') {
-            when {
-                expression { !PROTECTED_BRANCH }
-            }
-            environment {
-                NODE_ENV = ""
-            }
-            steps {
-                sh 'pnpm run test:unit:ci'
-            }
-            post {
-                always {
-                    junit(
-                        testResults: 'junitresults.xml',
-                        allowEmptyResults: true
-                    )
-                }
-            }
-        }
+        // stage('Test: Unit') {
+        //     when {
+        //         expression { !PROTECTED_BRANCH }
+        //     }
+        //     environment {
+        //         NODE_ENV = ""
+        //     }
+        //     steps {
+        //         sh 'pnpm run test:unit:ci'
+        //     }
+        //     post {
+        //         always {
+        //             junit(
+        //                 testResults: 'junitresults.xml',
+        //                 allowEmptyResults: true
+        //             )
+        //         }
+        //     }
+        // }
         stage('Test: E2E') {
             when {
                 expression { !PROTECTED_BRANCH }
@@ -170,14 +170,9 @@ pipeline {
 
 def cleanDockerE2E() {
     script {
-        def composeDown = sh(script: "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down", returnStatus: true)
-        if (composeDown != 0) {
-            echo "docker-compose down failed, but continuing..."
-        }
-
-        def removeContainer = sh(script: "docker rm ${containerId}", returnStatus: true)
-        if (removeContainer != 0) {
-            echo "Failed to remove container ${containerId}, it probably did not exist."
+        sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down || true"
+        if (containerId) {
+            sh "docker rm ${containerId} || true"
         }
     }
 }