This is an automated email from the ASF dual-hosted git repository.

dsmiley pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new 8ab107123f2 build failed-tests-at-end: improve isSuite detection
8ab107123f2 is described below

commit 8ab107123f2fa5b1380ed1bf54a6c119a495852f
Author: David Smiley <[email protected]>
AuthorDate: Sun May 24 18:00:19 2026 -0400

    build failed-tests-at-end: improve isSuite detection
---
 gradle/testing/failed-tests-at-end.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gradle/testing/failed-tests-at-end.gradle 
b/gradle/testing/failed-tests-at-end.gradle
index 81539de87dc..3bc30a08e40 100644
--- a/gradle/testing/failed-tests-at-end.gradle
+++ b/gradle/testing/failed-tests-at-end.gradle
@@ -20,7 +20,7 @@
 def failedTests = new LinkedHashSet() // for dedupe due to weird afterTest 
classMethod issue
 
 def genFailInfo(def task, TestDescriptor desc) {
-  boolean isSuite = (desc.name == 'classMethod')
+  boolean isSuite = (desc.name == 'classMethod' || desc.name == 
'initializationError')
   def name = isSuite ? desc.className : "${desc.className}.${desc.name}"
   def historyUrl = 
"https://develocity.apache.org/scans/tests?search.rootProjectNames=solr-root&tests.container=$desc.className";
   if (!isSuite) { // is test method specific

Reply via email to