Hi,

I got this simple snippet of build flow job which schedules few hundred 
jobs to be run parallel on many nodes:

jobs = build.environment.get("TEST_LIST").split(",")
jobs_to_run = []

number_of_jobs = jobs.size()

jobs.each {
  def job_name = it
  def closure = {
      build(job_name)
  }
  jobs_to_run.add(closure)
}
parallel(jobs_to_run)

When build flow finishes I aggregate results using Build Flow Test 
Aggregator Plugin. So far so good.

But if some test will not produce results.xml file (badly written test / 
node fail), it will not show up in Aggregated Test Results. This is why I 
would like to programmatically get number of results gathered by aggregator 
and test names, to compare initial list of tests with final output. Can I 
achieve it in same build flow ? This way I would be able to add some extra 
information on Aggregated Test Results page using 
GroovyPostbuildSummaryAction.

Sunny regs,
Jakub

-- 
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 jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7a1f6279-e714-46c2-897d-d791214cd17a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to