Rakefile update

This commit is contained in:
Antony Male 2014-05-06 13:19:13 +01:00
parent 3ecb0c38c8
commit e945254b14
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@ NUNIT_CONSOLE = File.join(NUNIT_TOOLS, 'nunit-console.exe')
NUNIT_EXE = File.join(NUNIT_TOOLS, 'nunit.exe')
OPENCOVER_CONSOLE = Dir['packages/OpenCover.*/OpenCover.Console.exe'].first
REPORT_GENERATOR = Dir['packages/ReportGenerator*/ReportGenerator.exe'].first
REPORT_GENERATOR = Dir['packages/ReportGenerator.*/ReportGenerator.exe'].first
UNIT_TESTS_DLL = "StyletUnitTests/bin/#{CONFIG}/StyletUnitTests.dll"
@ -41,5 +41,6 @@ desc "Generate code coverage reports for CONFIG (or Debug)"
task :cover => [:build] do |t|
sh OPENCOVER_CONSOLE, %Q{-register:user -target:"#{NUNIT_CONSOLE}" -filter:+[Stylet]* -targetargs:"#{UNIT_TESTS_DLL} /noshadow" -output:"#{COVERAGE_FILE}"}
sh REPORT_GENERATOR, %Q{-reports:"#{COVERAGE_FILE}" -targetdir:"#{COVERAGE_DIR}"}
rm 'TestResult.xml'
end