RE: EXTERNAL: Re: how to configure paths for "Publish JUnit test result report" plugin

2014-11-26 Thread Ng, Jeff
Sent: Wednesday, November 26, 2014 12:03 AM To: jenkinsci-users@googlegroups.com Subject: EXTERNAL: Re: how to configure paths for "Publish JUnit test result report" plugin But, How I will generate xml file I could not understand. and Where I will put this xml file pls On Wednesday, D

Re: how to configure paths for "Publish JUnit test result report" plugin

2014-11-25 Thread Md. Humayun Kabir Rana
But, How I will generate xml file I could not understand. and Where I will put this xml file pls On Wednesday, December 26, 2012 9:14:52 PM UTC+6, Harpreet singh Wadhwa wrote: > > Regular expression is the key :-) > example: "**/Test-*.xml" > > This will get all the files starting with Test and

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread Harpreet singh Wadhwa
@Kevin Thanks for correcting me (on not a regex) @zw For you this will work. as it searches in all directories under Workspace (in this case) Thanks On Wed, Dec 26, 2012 at 8:50 AM, zw wrote: > Hi Kevin > > Thanks for responding. > > My question isnt tied to one directory; > eg **/Test-*.xml

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread KEVIN FLEMING (BLOOMBERG/ 731 LEXIN)
A simple pattern of "**/*.xml" will collect *all* XML files in the entire workspace. If there are XML files the plugin should not inspect, then you'll have to ensure that the test result files all have some common portion of their name. For example, if all of your test result files had names tha

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread zw
Hi Kevin Thanks for responding. My question isnt tied to one directory; eg **/Test-*.xml may be one but I have another set of test results under **/target/surefire-reports/*.xml Question: How do I input in that plugin box to pick up both 2 different test results directories ? Thanks On Wed

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread zw
Hi Harpreet My question isnt tied to one directory; eg **/Test-*.xml may be one but I have another set of test results under **/target/surefire-reports/*.xml Question: How do I input in that plugin box to pick up both 2 different test results directories ? Thanks On Wednesday, December 26,

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread KEVIN FLEMING (BLOOMBERG/ 731 LEXIN)
That's not a regular expression, it's an Ant pattern expression. They are quite different, and serve different purposes. - Original Message - From: jenkinsci-users@googlegroups.com To: jenkinsci-users@googlegroups.com At: Dec 26 2012 10:15:30 Regular expression is the key :-) exam

Re: how to configure paths for "Publish JUnit test result report" plugin

2012-12-26 Thread Harpreet singh Wadhwa
Regular expression is the key :-) example: "**/Test-*.xml" This will get all the files starting with Test and ending with xml (from any directory inside workspace). Thanks On Tue, Dec 25, 2012 at 12:47 PM, Z W wrote: > Hi All > > We have different projects in a a build job producing different

how to configure paths for "Publish JUnit test result report" plugin

2012-12-25 Thread Z W
Hi All We have different projects in a a build job producing different subdirectories of xml test results file How do we configure multiple paths in plugin "Publish JUnit test result report" to get the test results file from different directories path; paths are not similar. thanks