From 12e44357098cb92522165ec0db3b9f4a1121fa46 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 7 Apr 2025 11:06:23 +0200 Subject: [PATCH] fix: update Cypress parallel test execution to use a single instance --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2f11556b5d..0f3bc47a9a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -125,7 +125,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 2' + sh 'sh test/cypress/cypressParallel.sh 1' } } }