Skip to content

Commit

Permalink
Prevent to many test executions
Browse files Browse the repository at this point in the history
  • Loading branch information
kifj committed Mar 7, 2024
1 parent 70c8ae2 commit 4955fe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ node {

stage('Pre IT-Test') {
withMaven(maven: 'Maven-3.9', mavenSettingsConfig: mavenSetting, options: [jacocoPublisher(disabled: true), junitPublisher(disabled: true)]) {
sh "mvn -Pdocker-integration-test pre-integration-test"
sh "mvn -Pdocker-integration-test pre-integration-test -DskipTests"
}
}

Expand Down Expand Up @@ -61,7 +61,7 @@ node {

stage('Create image') {
withMaven(maven: 'Maven-3.9', mavenSettingsConfig: mavenSetting, options: [jacocoPublisher(disabled: true), junitPublisher(disabled: true)]) {
sh "mvn -Pdocker install k8s:push"
sh "mvn -DskipTests -Pdocker install k8s:push"
}
}
}
Expand Down

0 comments on commit 4955fe9

Please sign in to comment.