[JIRA] (JENKINS-41710) Annotate test results with a test run name

2017-02-13 Thread jgl...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jesse Glick resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41710  
 
 
  Annotate test results with a test run name   
 

  
 
 
 
 

 
Change By: 
 Jesse Glick  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41710) Annotate test results with a test run name

2017-02-04 Thread thors...@meinl.bnv-bamberg.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thorsten Meinl commented on  JENKINS-41710  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Annotate test results with a test run name   
 

  
 
 
 
 

 
 This is a very good idea and makes replacing matrix jobs with (parallel) pipelines easier.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41710) Annotate test results with a test run name

2017-02-03 Thread stephen.alan.conno...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Stephen Connolly created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41710  
 
 
  Annotate test results with a test run name   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Stephen Connolly  
 
 
Attachments: 
 Screen Shot 2017-02-03 at 15.45.05.png  
 
 
Components: 
 junit-plugin  
 
 
Created: 
 2017/Feb/03 3:46 PM  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Stephen Connolly  
 

  
 
 
 
 

 
 When you have multiple test runs using pipelines, it would be super awesome to be able to annotate the different test runs with a name to allow differentiation, e.g. 

 

node('windows') {
  ...
  junit testResults:'target/tests.xml' testRunName: 'windows'
}
node('linux') {
  ...
  junit testResults:'target/tests.xml' testRunName: 'linux'
}
 

 This way you can tell which test run the tests came from.  The following screenshot illustrates how this would apply (by basically appending the test run name to each case)