From 39ba6e91750379205e103b64a6f00b252802819a Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 3 Feb 2025 13:06:01 +0100 Subject: [PATCH] test: refs #6695 try run e2e parallel --- Jenkinsfile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1d6ec3a51..919db8949 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -132,9 +132,16 @@ pipeline { } } stage('Run E2E') { - steps { - script { - runCypressTests(['claim', 'ticket']) + parallel{ + stage('Claim') { + steps { + sh 'docker-compose run e2e npx cypress run --config specPattern=test/cypress/integration/claim/**/*.spec.js' + } + } + stage('Ticket') { + steps { + sh 'docker-compose run e2e npx cypress run --config specPattern=test/cypress/integration/ticket/**/*.spec.js' + } } } }