We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c25cf9e commit 6d8d70aCopy full SHA for 6d8d70a
.ci/jenkins/Jenkinsfile.deploy
@@ -122,7 +122,11 @@ pipeline {
122
steps {
123
script {
124
dir(getRepoName()) {
125
- getMavenCommand().withProperty('maven.test.failure.ignore', true).skipTests(params.SKIP_TESTS).run('clean install')
+ def mvnCmd = getMavenCommand().withProperty('maven.test.failure.ignore', true)
126
+ if (params.SKIP_TESTS) {
127
+ mvnCmd.skipTests() // Conflict somehow with Python testing. If `skipTests={anyvalue}` is set, then exec plugin is not executed ...
128
+ }
129
+ util.runWithPythonVirtualEnv(mvnCmd.getFullRunCommand('clean install'), 'swf')
130
}
131
132
0 commit comments