I have a bamboo plan and have Junit Parser as one of the tasks for its run.
My tests generate multiple test results and they are all placed in the same directory. For example I have these under the working sub directory:
In the JUnit Parser, I put test/* for the custom results directories. When I run, I only get results from the last file, which is fooutil.xml. Is this expected? Does bamboo only pick up one test results file per directory?
This is bamboo 3.3.2 build 2718.
Thanks
I think you have to use ant-style regexp: http://ant.apache.org/manual/dirtasks.html#patterns
So, looking at your example I'd guess you have to specify "test/**" - double asterisk instead of single one.
edit: hm... after looking once again at the issue it seems to me that this shouldn't be relevant...
Thanks for answering. I really appreciate it. I will try your suggestions. All though, I may have found the reason for the test results from a file not being picked up by bamboo. I'll post another question for that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.