Re: New Feature: Realtime test results for JUnit

2013-09-27 Thread ogondza
I consider this pull request feature complete. If interested, try it out: https://jenkins.ci.cloudbees.com/job/core/job/jenkins_main_trunk/1247/artifact/war/target/jenkins.war -- oliver -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To u

Re: New Feature: Realtime test results for JUnit

2013-09-18 Thread ogondza
Hi, it's been a while but finally I have something that seems to work for freestyle, maven and matrix projects. I am working on report aggregation so it is sill a work in progress. But the most important part is done: asynchronous test result updating for individual builds. tl;dr: Every build t

Re: New Feature: Realtime test results for JUnit

2013-08-16 Thread ogondza
I am releasing this plugin to deliver the feature early. In the meantime, someone might find it useful. https://wiki.jenkins-ci.org/display/JENKINS/JUnit+Realtime+Test+Reporter+Plugin -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To un

Re: New Feature: Realtime test results for JUnit

2013-08-12 Thread Roman
On 08/12/2013 02:58 PM, ogondza wrote: > Thanks for the feedback. I guess we agreed that it would be an > interesting feature for core provided we can implement it in a > reasonably efficient way. > > @kpfleming: We can do better than re-runing JUnitResultArchiver. I have > modified the parser to

Re: New Feature: Realtime test results for JUnit

2013-08-12 Thread Jesse Glick
On Mon, Aug 12, 2013 at 6:58 AM, ogondza wrote: > it would be an interesting feature for core Definitely it would, though for something this complex I cannot help but ask if we should not first make a real effort to split JUnit reporting out of core into a proper plugin. > spinning a thread on s

Re: New Feature: Realtime test results for JUnit

2013-08-12 Thread ogondza
Thanks for the feedback. I guess we agreed that it would be an interesting feature for core provided we can implement it in a reasonably efficient way. @kpfleming: We can do better than re-runing JUnitResultArchiver. I have modified the parser to update result object incrementally in order _not_

Re: New Feature: Realtime test results for JUnit

2013-08-08 Thread Kohsuke Kawaguchi
I think this is great! It's certainly a long awaited feature. I agree with Kevin that this would likely eventually require some changes in JUnitParser for efficiency. But I think it's good thing to do. What do you think about spending an office hour on topic so that we can hash out challenge

Re: New Feature: Realtime test results for JUnit

2013-08-08 Thread Roman
Hi, Could you please describe more how do you do it? I use junit results for non-java tests and and want to see realtime results feature but Test+In+Progress+Plugin oriented on java events. Thanks, Roman On 08/08/2013 07:41 PM, ogondza wrote: > Thanks, never heard about the plugin before.

Re: New Feature: Realtime test results for JUnit

2013-08-08 Thread Kevin Fleming (BLOOMBERG/ 731 LEXIN)
Re-executing the JUnitParser is going to be very expensive for builds with a large number of unit tests. When I've considered this sort of thing in the past, I was pretty certain that it would require 'help' from the project itself, so that the parser can be made aware of newly-available test re

Re: New Feature: Realtime test results for JUnit

2013-08-08 Thread Larry Shatzer, Jr.
I've not used the plugin, since it does require some extra setup on the project side, such as extra jar, and tests setup with a specific runner, or something like that. You might want to contact the plugin maintainer for more help or information. -- Larry On Thu, Aug 8, 2013 at 9:41 AM, ogondza

Re: New Feature: Realtime test results for JUnit

2013-08-08 Thread ogondza
Thanks, never heard about the plugin before. This seems to require assistance from the project being built, right? I simply rerun JUnitParser to collect report files regardless where did they come from. Perhaps I'm wrong. I do not have enough time try it out. -- oliver > -- You received thi

Re: New Feature: Realtime test results for JUnit

2013-08-08 Thread Larry Shatzer, Jr.
How does this differ from https://wiki.jenkins-ci.org/display/JENKINS/Test+In+Progress+Plugin? On Thu, Aug 8, 2013 at 6:18 AM, oliver gondža wrote: > Hi, > > I have started working on a feature that would allow users to look at > JUnit Test Results while the build is still running. The Test Res

New Feature: Realtime test results for JUnit

2013-08-08 Thread oliver gondža
Hi, I have started working on a feature that would allow users to look at JUnit Test Results while the build is still running. The Test Result page is updated with new results as they are produced by underlying build until they are turned into final Test Results as we know them. As it is an