Fix cover report generation

This commit is contained in:
Antony Male 2016-01-19 11:15:35 +00:00
parent 5d752f1fa9
commit 3f7d3ec940
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ def instrument(runner, target)
end
coverage_file = File.join(COVERAGE_DIR, File.basename(target).ext('xml'))
sh OPENCOVER_CONSOLE, %Q{-register:user -target:"#{opttarget}" -filter:"+[Stylet]* -[Stylet]XamlGeneratedNamespace.*" -targetargs:"#{opttargetargs} /noshadow" -output:"#{coverage_file}"}
sh OPENCOVER_CONSOLE, '-register:user', "-target:#{opttarget}", "-filter:+[Stylet]* -[Stylet]XamlGeneratedNamespace.*", "-targetargs:#{opttargetargs} /noshadow", "-output:#{coverage_file}"
rm('TestResult.xml', :force => true) if runner == :nunit
@ -91,7 +91,7 @@ end
def coverage(coverage_files)
coverage_files = [*coverage_files]
sh REPORT_GENERATOR, %Q{-reports:"#{coverage_files.join(';')}" "-targetdir:#{COVERAGE_DIR}"}
sh REPORT_GENERATOR, "-reports:#{coverage_files.join(';')}", "-targetdir:#{COVERAGE_DIR}"
end
desc "Create NuGet package"