0
0
Fork 0

refs #6797 warmFix: jenkinsfile

This commit is contained in:
Alex Moreno 2024-02-27 09:39:19 +01:00
parent a1a342a107
commit 504ea7b5fb
1 changed files with 5 additions and 9 deletions

14
Jenkinsfile vendored
View File

@ -75,16 +75,12 @@ pipeline {
steps {
sh 'npm run test:unit:ci'
}
post {
post {
always {
script {
try {
junit 'junitresults.xml'
junit 'junit.xml'
} catch (e) {
echo e.toString()
}
}
junit(
testResults: 'junitresults.xml',
allowEmptyResults: true
)
}
}
}