Skip to content

Commit 0548b63

Browse files
Lukas Grossmanndatho7561
authored andcommitted
Editing jenkins file so UI tests are run even if integration tests fail
Signed-off-by: Lukas Grossmann <lgrossma@redhat.com>
1 parent e126e59 commit 0548b63

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/ui/Jenkinsfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ node('rhel8') {
1414

1515
withEnv(['JUNIT_REPORT_PATH=report.xml']) {
1616
stage('integration tests') {
17-
wrap([$class: 'Xvnc']) {
17+
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
18+
wrap([$class: 'Xvnc']) {
1819
sh "npm run test-integration"
1920
junit 'report.xml'
21+
}
2022
}
2123
}
2224
stage('UI smoke test') {

0 commit comments

Comments
 (0)