Re: jenkins support for parametrized test results

2015-05-07 Thread Mark Waite
I don't know of a way to do that. That seems like it would require additions to the junit plugin. On Thu, May 7, 2015, 8:20 AM bl0ck3r wrote: > That's almost what I am looking for: each parameter is reported in a > separate report. Is there a way to see the trend of a parametrized test > over ti

Re: jenkins support for parametrized test results

2015-05-07 Thread bl0ck3r
That's almost what I am looking for: each parameter is reported in a separate report. Is there a way to see the trend of a parametrized test over time, regardless of the parameter value? I mean the trend of the test, not the trend of each parameter value. Also, when I have say 50 parameter valu

Re: jenkins support for parametrized test results

2015-05-05 Thread Mark Waite
https://jenkins.ci.cloudbees.com/job/plugins/job/git-client-plugin/org.jenkins-ci.plugins$git-client/lastCompletedBuild/testReport/org.jenkinsci.plugins.gitclient/GitTest/ shows an example of the presentation of results from a parameterized test. Mark Waite On Tuesday, May 5, 2015 at 9:49:51 AM

Re: jenkins support for parametrized test results

2015-05-05 Thread Mark Waite
The git client plugin uses parameterized unit tests in a number of areas and I've found the Jenkins presentation of those parameterized test results to be workable for my needs. I'm not sure if it is perfect, but the parameterized tests which I run are showing their results in a way that I underst

jenkins support for parametrized test results

2015-05-05 Thread Martin d'Anjou
Does jenkins support the JUnit XML format of JUnitParams for reporting tests? https://github.com/Pragmatists/JUnitParams/issues/38 If not, is there a Jenkins test report plugin able to report and track parametrized tests reports? The report format has to be as easy as JUnit XML as I write the repo