[JIRA] [emma-plugin] (JENKINS-33492) Not picking up multiple code coverage files

2016-04-07 Thread ivo.bellinsala...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Ivo Bellin Salarin commented on  JENKINS-33492 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Not picking up multiple code coverage files  
 
 
 
 
 
 
 
 
 
 
To me, 'Merging code coverage data' is a responsibility of the CodeCoverageConverter. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [emma-plugin] (JENKINS-33492) Not picking up multiple code coverage files

2016-03-11 Thread glom...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Stuart Branham created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-33492 
 
 
 
  Not picking up multiple code coverage files  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Kohsuke Kawaguchi 
 
 
 

Attachments:
 

 Screenshot 2016-03-11 at 04.33.49 PM.png 
 
 
 

Components:
 

 emma-plugin, mstest-plugin 
 
 
 

Created:
 

 12/Mar/16 12:48 AM 
 
 
 

Environment:
 

 MSTest plugin 0.19. Visual Studio 2015 Update 1, Emma pplugin 1.29 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Stuart Branham 
 
 
 
 
 
 
 
 
 
 
I have 5 test projects in my solution. I'm building my test results and code coverage with the script below. 

 

$projectFolders = ls Sources\*.Test* | % { $_.Name }
foreach ($projectName in $projectFolders)
{
  vstest.console.exe "Sources\$projectName\bin\Dev\$projectName.dll" /Logger:trx /EnableCodeCoverage /Platform:x64
}
$trxFiles = ls TestResults -Recurse -Include *.trx
foreach ($trxFile in $trxFiles)
{
  $testdataFolder = $trxFile.FullName -replace '.trx$',''
  $coverageFile = ls $testdataFolder -Recurse