From 088fd0b710b415a6d23f51a76fe7fdc4a5813e1a Mon Sep 17 00:00:00 2001 From: Juan Ferrer Toribio Date: Fri, 21 Feb 2025 12:20:05 +0100 Subject: [PATCH] ci: refs #6695 cypress junit file renamed, e2e focus removed --- Jenkinsfile | 4 ++-- cypress.config.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index dfef29c58..8efc2f880 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -116,7 +116,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 'cypress run --browser chromium --spec test/cypress/integration/claim/claimAction.spec.js' + sh 'cypress run --browser chromium' } } } @@ -124,7 +124,7 @@ pipeline { always { sh "docker-compose ${env.COMPOSE_PARAMS} down" junit( - testResults: 'junit/cypress.xml', + testResults: 'junit/e2e.xml', allowEmptyResults: true ) } diff --git a/cypress.config.js b/cypress.config.js index bb21028cd..84ffc68a8 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -11,7 +11,7 @@ if (process.env.CI) { urlHost = 'front'; reporter = 'junit'; reporterOptions = { - mochaFile: 'junit/cypress.xml', + mochaFile: 'junit/e2e.xml', toConsole: false, }; } else {