From ca37e716fdc08ad6662bf9ef284de12d2c318ff6 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 5 Feb 2021 16:40:15 -0500 Subject: [PATCH] Attempt to log unit test output --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 485fdbb..6d318cd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -38,7 +38,9 @@ pipeline { } } } - stage("Coverage") { + } + post { + success { steps { sh 'php composer.phar run-script coverage' step([ @@ -46,6 +48,7 @@ pipeline { cloverReportDir: '', cloverReportFileName: 'build/logs/clover.xml', ]) + junit 'build/logs/junit.xml' } } }