From 062389626eaa7146f99026c9d3936c28ad231985 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 10 Feb 2025 07:54:51 +0100 Subject: [PATCH] test: refs #6695 e2e fix network --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 00470d851..e4155ed7a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -110,7 +110,7 @@ pipeline { // sh "git clone https://gitea.verdnatura.es/verdnatura/salix.git" // } sh "pnpm exec cypress install" - sh "docker network create ${env.NETWORK}|| true" + sh "docker network create ${env.NETWORK} || true" } // sh 'rm -rf salix' // sh 'git clone dev https://gitea.verdnatura.es/verdnatura/salix.git' @@ -201,7 +201,7 @@ def cleanDockerE2E() { script { // sh 'docker rm -f vn-database || true' // sh 'docker rm -f salix_e2e || true' - sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down || true" + sh "docker-compose -p ${env.NETWORK} -f docker-compose.e2e.yml down --volumes || true" sh "docker network rm ${env.NETWORK} || true" } }