Jenkins fixes

This commit is contained in:
Juan Ferrer 2019-01-26 20:51:37 +01:00
parent 262d03689f
commit 87395d68cd
2 changed files with 2 additions and 1 deletions

1
Jenkinsfile vendored
View File

@ -118,6 +118,7 @@ pipeline {
} }
post { post {
always { always {
junit '*/junit.xml'
script { script {
if (!env.GIT_COMMITTER_EMAIL) return if (!env.GIT_COMMITTER_EMAIL) return
try { try {

View File

@ -119,7 +119,7 @@ module.exports = function(config) {
singleRun: true, singleRun: true,
reporters: ['dots', 'junit'], reporters: ['dots', 'junit'],
junitReporter: { junitReporter: {
outputFile: 'test-results.xml' outputFile: 'junit.xml'
} }
}); });
} }