Re: Test Results (Junit) is there an entry method I can use over generating xml?

2020-08-25 Thread Michael Carter
That was easier than I thought. Thanks. On Tuesday, August 25, 2020 at 3:24:40 PM UTC-4 ullrich...@gmail.com wrote: > This should be feasible. Here is the part of the code that fills in the > results: > >

Re: Test Results (Junit) is there an entry method I can use over generating xml?

2020-08-25 Thread Tim Jacomb
There's a very early version of pluggable storage available that you can use with a SQL backend instead of XML https://github.com/jenkinsci/junit-plugin/releases/tag/junit-1.32 https://github.com/jenkinsci/junit-plugin/issues/142 The API may change in incompatible ways, and it's not complete

Re: Test Results (Junit) is there an entry method I can use over generating xml?

2020-08-25 Thread Ullrich Hafner
This should be feasible. Here is the part of the code that fills in the results: https://github.com/jenkinsci/junit-plugin/blob/master/src/main/java/hudson/tasks/junit/JUnitResultArchiver.java#L172

Test Results (Junit) is there an entry method I can use over generating xml?

2020-08-25 Thread Michael Carter
Basically I have a bunch of SQL statements in my plugin I was going to write to a junit xml file then use a junit post step for uploading... but then thought... Can I some how combine them? Is there a method I can call that adds Junit Tests cases, that I can call for each sql so I can report