diff --git a/Jenkinsfile b/Jenkinsfile index 2a8854c3ad..113689c73c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -119,7 +119,7 @@ pipeline { // sh 'cypress run --browser chromium' sh ''' CYPRESS_SPEC_FOLDER="test/cypress/integration" - find $CYPRESS_SPEC_FOLDER -name "*.spec.js" | xargs -n 1 -P 4 -I {} sh -c "cypress run --browser chromium --headless --spec '{}'" + find $CYPRESS_SPEC_FOLDER -name "*.spec.js" | xargs -n 1 -P 8 -I {} sh -c "cypress run --browser chromium --headless --spec '{}'" wait; ''' } @@ -129,7 +129,7 @@ pipeline { always { sh "docker-compose ${env.COMPOSE_PARAMS} down" junit( - testResults: 'test/cypress/results/*.xml', + testResults: 'test/cypress/results/junit-*.xml', allowEmptyResults: true ) }