From a15eb7eecf0bd0c63af207afefa635a715cd009d Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 22 Sep 2021 16:23:49 -0500 Subject: [PATCH] Remove finally block for junit Allow this to be gathered by Gradle enterprise since if build is up to date there will be no tests ran which causes failure. Additionally, Gradle Enterprise displays the tests better than Jenkins. --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bd60ff6dbe..28409e463b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,8 +28,6 @@ try { currentBuild.result = 'FAILED: check' throw e - } finally { - junit '**/build/test-results/*/*.xml' } } }