From abce10b4ee4e2524c62e17d380c7f65e5f46cec1 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 10 Mar 2025 11:05:40 +0100 Subject: [PATCH] fix(Jenkinsfile): reduce parallel Cypress test execution from 3 to 2 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index df2421a0e..63577dad5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -123,7 +123,7 @@ pipeline { sh "docker-compose ${env.COMPOSE_PARAMS} up -d" image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") { - sh 'sh test/cypress/cypressParallel.sh 3' + sh 'sh test/cypress/cypressParallel.sh 2' } } }