Commit 330c91b

unknown <mkhan@.arcresources.ca>
2009-10-08 13:47:54
now showing the test report when running all the tests.
1 parent aa36c40
Changed files (1)
rakefile.rb
@@ -59,7 +59,7 @@ end
 task :test, :category_to_exclude, :needs => [:compile] do |t,args|
   puts Project.startup_dir
   args.with_defaults(:category_to_exclude => 'SLOW')
-  runner = MbUnitRunner.new :compile_target => COMPILE_TARGET, :category_to_exclude => args.category_to_exclude, :show_report => false
+  runner = MbUnitRunner.new :compile_target => COMPILE_TARGET, :category_to_exclude => args.category_to_exclude, :show_report => true, :report_type => "text"
   runner.execute_tests ["#{Project.tests_dir}"]
 end