refactor(cypress): refs #6695 simplify parallel test execution script
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Alex Moreno 2025-03-04 12:30:47 +01:00
parent 8a99da0fba
commit bc7ad3e32b
3 changed files with 6 additions and 16 deletions

5
Jenkinsfile vendored
View File

@ -118,10 +118,7 @@ pipeline {
def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs')
sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ") {
sh '''#!/bin/bash
source test/cypress/cypressParallel.sh
cypressParallel 2 || true
'''
sh 'sh test/cypress/cypressParallel.sh 2'
}
}
}

View File

@ -1,8 +1,4 @@
cypressParallel() {
# TEST_PATHS=(
# '...'
# )
# printf "%s\n" "${TEST_PATHS[@]}" | xargs -P $1 -I {} sh -c 'xvfb-run -a cypress run --headless --browser chromium --spec {}'
find 'test/cypress/integration' -mindepth 1 -maxdepth 1 -type d | xargs -P "$1" -I {} sh -c 'echo "🔷 {}" && xvfb-run -a cypress run --headless --browser chromium --spec "{}" --quiet > /dev/null 2>&1'
wait
}
#!/bin/bash
find 'test/cypress/integration' -mindepth 1 -maxdepth 1 -type d | xargs -P "$1" -I {} sh -c 'echo "🔷 {}" && xvfb-run -a cypress run --headless --browser chromium --spec "{}" --quiet > /dev/null 2>&1'
wait

View File

@ -23,9 +23,6 @@ docker run -it --rm \
-e CI \
-e TZ \
lilium-dev \
bash -c '
source test/cypress/cypressParallel.sh
cypressParallel 2
'
bash -c 'sh test/cypress/cypressParallel.sh 2'
cleanup