diff --git a/Jenkinsfile b/Jenkinsfile index e7757b4996..7269135415 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -335,6 +335,11 @@ pipeline { hack/test/unit ''' } + post { + always { + junit testResults: 'bundles/junit-report.xml', allowEmptyResults: true + } + } } stage("Integration tests") { environment { TEST_SKIP_INTEGRATION_CLI = '1' } @@ -496,6 +501,11 @@ pipeline { hack/test/unit ''' } + post { + always { + junit testResults: 'bundles/junit-report.xml', allowEmptyResults: true + } + } } stage("Integration tests") { environment { TEST_SKIP_INTEGRATION_CLI = '1' }