Skip to content

Commit

Permalink
IWT-718: run mvn verify instead of mvn test; test only executes unit …
Browse files Browse the repository at this point in the history
…tests

(cherry picked from commit 3332e7d)
  • Loading branch information
junm committed Mar 2, 2021
1 parent 96a3baf commit 6cd55b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile-NIS
Expand Up @@ -39,7 +39,7 @@ pipeline {
}
steps {
withMaven(maven: 'maven', mavenLocalRepo: '../../maven_repos/'+BRANCH_NAME) {
sh 'mvn test -pl CIMReader'
sh 'mvn verify -pl CIMReader'
}
}
post {
Expand All @@ -56,7 +56,7 @@ pipeline {
}
steps {
withMaven(maven: 'maven', mavenLocalRepo: '../../maven_repos/'+BRANCH_NAME) {
sh 'mvn test -pl CIMExport'
sh 'mvn verify -pl CIMExport'
}
}
post {
Expand Down

0 comments on commit 6cd55b3

Please sign in to comment.