From 5dc73614a3dd3b0d4df59dd7a0e5dcea67e23af6 Mon Sep 17 00:00:00 2001 From: alexm Date: Thu, 13 Feb 2025 09:48:11 +0100 Subject: [PATCH] refactor: refs #6695 update Jenkinsfile to run E2E tests in parallel and simplify docker-compose command --- Jenkinsfile | 6 ++++-- docker-compose.e2e.yml | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 06340dae7..ecbd342c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -120,8 +120,10 @@ pipeline { stage('E2E: Sections') { steps { script { - runTestsInParallel(2) - + sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml up -d back" + sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml up -d front" + sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml up e2e" + checkErrors(folderName) } } } diff --git a/docker-compose.e2e.yml b/docker-compose.e2e.yml index d93bcfcf4..4c84824a6 100644 --- a/docker-compose.e2e.yml +++ b/docker-compose.e2e.yml @@ -23,7 +23,7 @@ services: e2e: image: alexmorenovn/vndev:latest # command: pnpm exec cypress run --browser chromium - command: sh -c "pnpm exec cypress install && pnpm exec cypress run --headed --spec ${CYPRESS_SPEC:?}" + command: pnpm exec cypress run --headed environment: - TZ=Europe/Madrid volumes: