Re: [Wtr-general] ci_reporter usage of xml files

2007-06-29 Thread Bret Pettichord
marekj wrote:
 How do you guys read the reports, do you have some custom formatters 
 to translate into HTML? I am new to ci_reporter and we don't run CI 
 here. I just want to hook up some presentation layer to reports 
 generated by ci. Can I specify some formatter options to ci_reporter 
 at run time about where to put the report files rather than the 
 default place?
Yes there is an option to change where the reports are generated. It is 
described in the ci_reporter documentation.
 How do you consolidate the reports into one summary file?
I use cruise control.net.
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general


[Wtr-general] ci_reporter usage of xml files

2007-06-27 Thread marekj

At the top of my  test suite I have the following infrastructre code

require 'watir'
require 'ci/reporter/rake/test_unit_loader'
require 'test/unit/ui/console/testrunner'
include Test::Unit::UI::Console
require 'tc_x_series'
require 'tc_y_series'

and then I overwrite the default suite because I run my TestCases
sequentially
I maintain the order in the array
[TC_x1,TC_x2, TC_y1].each {|testcase| TestRunner.run(testcase)}

Each test produces an xml report, one file per TC_ in test/reports/ folder.

Questions:
How do you guys read the reports, do you have some custom formatters to
translate into HTML? I am new to ci_reporter and we don't run CI here. I
just want to hook up some presentation layer to reports generated by ci. Can
I specify some formatter options to ci_reporter at run time about where to
put the report files rather than the default place?
How do you consolidate the reports into one summary file?
Any ideas would be helpful .
Thanks.
marekj
___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

Re: [Wtr-general] ci_reporter usage of xml files

2007-06-27 Thread Charley Baker

I haven't had a chance to work with ci_reporter though I hope to if I ever
get some free time. My assumption is that they're junit style reports which
can be consumed by a dashboard. We're using CruiseControl now for continuous
builds and reporting results, there's a recent ruby port on rubyforge:
http://rubyforge.org/projects/cruisecontrolrb/

hth,

Charley

On 6/27/07, marekj [EMAIL PROTECTED] wrote:


At the top of my  test suite I have the following infrastructre code

require 'watir'
require 'ci/reporter/rake/test_unit_loader'
require 'test/unit/ui/console/testrunner'
include Test::Unit::UI::Console
require 'tc_x_series'
require 'tc_y_series'

and then I overwrite the default suite because I run my TestCases
sequentially
I maintain the order in the array
[TC_x1,TC_x2, TC_y1].each {|testcase| TestRunner.run(testcase)}

Each test produces an xml report, one file per TC_ in test/reports/
folder.

Questions:
How do you guys read the reports, do you have some custom formatters to
translate into HTML? I am new to ci_reporter and we don't run CI here. I
just want to hook up some presentation layer to reports generated by ci. Can
I specify some formatter options to ci_reporter at run time about where to
put the report files rather than the default place?
How do you consolidate the reports into one summary file?
Any ideas would be helpful .
Thanks.
marekj



___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general

___
Wtr-general mailing list
Wtr-general@rubyforge.org
http://rubyforge.org/mailman/listinfo/wtr-general