From a1509500e34c910f39c7b91579ab3b073b51f8a4 Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 27 Feb 2025 09:27:16 +0100 Subject: [PATCH] fix: prevent 'cypress run' error to show junit --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8e22a87dac6..71a7aa25f75 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -117,7 +117,7 @@ pipeline { def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs') sh "docker-compose ${env.COMPOSE_PARAMS} up -d" image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ") { - sh 'cypress run --browser chromium' + sh 'cypress run --browser chromium || true' } } }