From 3c8e3c2642d76cde654f7c0fbfffdeb757a55e81 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 24 Feb 2025 09:54:53 +0100 Subject: [PATCH] ci: refs #6695 update Cypress parallel execution and JUnit results path --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2a8854c3ad..113689c73c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -119,7 +119,7 @@ pipeline { // sh 'cypress run --browser chromium' sh ''' CYPRESS_SPEC_FOLDER="test/cypress/integration" - find $CYPRESS_SPEC_FOLDER -name "*.spec.js" | xargs -n 1 -P 4 -I {} sh -c "cypress run --browser chromium --headless --spec '{}'" + find $CYPRESS_SPEC_FOLDER -name "*.spec.js" | xargs -n 1 -P 8 -I {} sh -c "cypress run --browser chromium --headless --spec '{}'" wait; ''' } @@ -129,7 +129,7 @@ pipeline { always { sh "docker-compose ${env.COMPOSE_PARAMS} down" junit( - testResults: 'test/cypress/results/*.xml', + testResults: 'test/cypress/results/junit-*.xml', allowEmptyResults: true ) }