diff --git a/Jenkinsfile b/Jenkinsfile index 919db8949..eff34ecbc 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' } } }