Modify Rakefile to not fail if TestResult.xml doesn't exist

This commit is contained in:
Antony Male 2014-05-23 13:31:21 +01:00
parent 863bcf9b87
commit 7b45e51919
1 changed files with 2 additions and 2 deletions

View File

@ -43,7 +43,7 @@ end
desc "Run unit tests using the current CONFIG (or Debug)" desc "Run unit tests using the current CONFIG (or Debug)"
task :test => [:nunit_test_runner] do |t| task :test => [:nunit_test_runner] do |t|
rm 'TestResult.xml' rm 'TestResult.xml', :force => true
end end
desc "Launch the NUnit gui pointing at the correct DLL for CONFIG (or Debug)" desc "Launch the NUnit gui pointing at the correct DLL for CONFIG (or Debug)"
@ -86,7 +86,7 @@ def instrument(runner, target)
coverage_file = File.join(COVERAGE_DIR, File.basename(target).ext('xml')) 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, %Q{-register:user -target:"#{opttarget}" -filter:"+[Stylet]* -[Stylet]XamlGeneratedNamespace.*" -targetargs:"#{opttargetargs} /noshadow" -output:"#{coverage_file}"}
rm 'TestResult.xml' if runner == :nunit rm('TestResult.xml', :force => true) if runner == :nunit
coverage_file coverage_file
end end