From 258ff52e3ce2d98532213fdf5ceefb465ec7d1b4 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 3 Feb 2025 13:09:31 +0100 Subject: [PATCH] test: refs #6695 try run e2e parallel --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 919db8949f..eff34ecbca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -135,12 +135,12 @@ pipeline { parallel{ stage('Claim') { steps { - sh 'docker-compose run e2e npx cypress run --config specPattern=test/cypress/integration/claim/**/*.spec.js' + sh 'docker-compose -f docker-compose.e2e.yml 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' + sh 'docker-compose -f docker-compose.e2e.yml run e2e npx cypress run --config specPattern=test/cypress/integration/ticket/**/*.spec.js' } } }