I'm not sure whether there is any specific plugin for that, if so, hope 
someone else can answer it. 

In any case, you can write your own groovy script to generate those 
details, something like the below snippet, but you need to add the filter 
of the builds executed in the last day or so.

Jenkins.instance?.items.each {
  try {
    // TODO: filter based on the specific time, further details:  
http://javadoc.jenkins-ci.org/hudson/model/Run.html#getTimestamp--
    it.builds.each { build ->
      build.getActions(hudson.tasks.junit.TestResultAction).each {action ->
        println it.name
        println "Build ran: ${build.getTime()}"
        println "total: ${action.getTotalCount()} failed: 
${action.getFailCount()} skipt ${action.getSkipCount()}"
      }
    }
  } catch (groovy.lang.MissingPropertyException mpe) {
    println "This item is not supported: ${it.name}" 
  }
}


If you copy&paste the below snippet in your jenkins_instance/script 
<https://wiki.jenkins.io/display/JENKINS/Jenkins+Script+Console> then you 
can see how it looks like. 

If you use pipelines 
then: 
https://stackoverflow.com/questions/38978295/using-pipeline-groovy-how-can-i-extract-test-results-from-jenkins-for-my-curr
 
might help you out. 

Cheers

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b01889c6-69ab-4590-8595-3ccb97ca246f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to