ninja-fix: Jenkins junit plugin OOMs on the aggregated test report, revert to using the non-aggregated test reports.
diff --git a/jenkins-dsl/cassandra_pipeline.groovy b/jenkins-dsl/cassandra_pipeline.groovy
index 9f4ae75..c3102fb 100644
--- a/jenkins-dsl/cassandra_pipeline.groovy
+++ b/jenkins-dsl/cassandra_pipeline.groovy
@@ -231,9 +231,7 @@
         steps {
             sh "git clone https://gitbox.apache.org/repos/asf/cassandra-builds.git"
             sh "./cassandra-builds/build-scripts/cassandra-test-report.sh"
-            // remove TESTS-TestSuites.xml as it is too big for the jenkins junit plugin to parse
-            sh 'rm TESTS-TestSuites.xml'
-            junit '**/TEST*.xml,**/cqlshlib.xml,**/nosetests.xml'
+            junit '**/build/test/**/TEST*.xml,**/cqlshlib.xml,**/nosetests.xml'
         }
       }
   }