Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
pdulth committed Apr 30, 2024
1 parent ab33bf5 commit f48910c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,25 +71,25 @@ pipeline {
}
}

stage('Run RCPTT Tests') {
stage('Run JUnit Tests') {
steps {
wrap([$class: 'Xvnc', takeScreenshot: false, useXauthority: true]) {
script {
sh 'mvn -Dmaven.test.failure.ignore=true verify -P rcptt -e'

sh "mvn -Dmaven.test.failure.ignore=true verify -P test -e"
}
}
}
}
}

stage('Run JUnit Tests') {
stage('Run RCPTT Tests') {
steps {
wrap([$class: 'Xvnc', takeScreenshot: false, useXauthority: true]) {
script {
sh "mvn -Dmaven.test.failure.ignore=true verify -P test -e"
sh 'mvn -Dmaven.test.failure.ignore=true verify -P rcptt -e'

}
}
}
}
}

stage('Publish tests results') {
Expand Down
1 change: 1 addition & 0 deletions releng/plugins/org.polarsys.kitalpha.releng.parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@
<includes>
<include>${testFiltreClass}</include>
</includes>
<argLine>-Xmx3000</argLine>
<testFailureIgnore>true</testFailureIgnore>
<useUIHarness>${tycho.surefire.useUIHarness}</useUIHarness>
</configuration>
Expand Down

0 comments on commit f48910c

Please sign in to comment.