On Mon, Aug 12, 2013 at 6:58 AM, ogondza <[email protected]> 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 slave to monitor new report files Or use java.nio.file.WatchService when available. Most practical when the report wildcard contains just a single wildcard in the final path segment, i.e. ‘some-dir/TEST-*.xml’ can be easily monitored by watching some-dir; in the general case (e.g. ‘**/TEST-*.xml’) you might need to watch the whole workspace, which is inefficient using the current API. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
