From e5a3c6f4a0e181945965dfbaff7a0cc20c6fc255 Mon Sep 17 00:00:00 2001 From: radtriste Date: Mon, 31 Jul 2023 13:41:50 +0200 Subject: [PATCH] updated skipTests --- .ci/jenkins/Jenkinsfile.deploy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/jenkins/Jenkinsfile.deploy b/.ci/jenkins/Jenkinsfile.deploy index fb6067d1213..f9078c07706 100644 --- a/.ci/jenkins/Jenkinsfile.deploy +++ b/.ci/jenkins/Jenkinsfile.deploy @@ -110,6 +110,9 @@ pipeline { .withProperty('maven.test.failure.ignore', true) .skipTests(params.SKIP_TESTS) + if (params.SKIP_TESTS) { + mvnCmd.skipTests() // Conflict somehow with Python testing. If `skipTests={anyvalue}` is set, then exec plugin is not executed ... + } if (isRelease()) { // Use nightly image for testing as the released one does not exist yet ... mvnCmd.withProperty('data-index-ephemeral.image', getDataIndexEphemeralNightlyImage())