[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Continous integration and watir

Emil Sandin

3/4/2008 7:18:00 PM

Has anyone set up a Continous integration server running watir tests?
Any comparisons or tips?

Kind Regards
Emil
--
Posted via http://www.ruby-....

4 Answers

Charley Baker

3/5/2008 5:10:00 PM

0

We're running Cruise Control on 10 vms that kick off our functional test
suites the majority of which are using Watir. Did you have any specific
questions? I also put together a quick blog post on setting one up from
scratch:
http://charleybakersblog.bl...

-Charley

Emil Sandin wrote:
> Has anyone set up a Continous integration server running watir tests?
> Any comparisons or tips?
>
> Kind Regards
> Emil

--
Posted via http://www.ruby-....

Kyle Schmitt

3/5/2008 5:27:00 PM

0

Emil,
I used to do this all the time at a .Net shop, funny enough, also
in a slew of VMs.
More or less, you can just set it to run as a test, after the build.
Instead of relying
on the exit codes (Oi I'm remember the pain of some of this now...) we
had the watir
test output an xml file, which was grabbed in the build report.

I never used the CI Reporter in Ruby though.
Charley, can that be used to report test status to say, the
traditional Java CC, and CC.Net?

--Kyle

Charley Baker

3/5/2008 6:22:00 PM

0

Kyle,

CI reporter outputs in the standard xUnit style xml file which can be
picked up by any version of CC. We're actualy using the Java CC
internally with dashboards, metrics, etc for both unit and functional
tests.

-Charley


Kyle Schmitt wrote:
> Emil,
> I used to do this all the time at a .Net shop, funny enough, also
> in a slew of VMs.
> More or less, you can just set it to run as a test, after the build.
> Instead of relying
> on the exit codes (Oi I'm remember the pain of some of this now...) we
> had the watir
> test output an xml file, which was grabbed in the build report.
>
> I never used the CI Reporter in Ruby though.
> Charley, can that be used to report test status to say, the
> traditional Java CC, and CC.Net?
>
> --Kyle

--
Posted via http://www.ruby-....

Emil Sandin

3/5/2008 6:27:00 PM

0

Charley Baker wrote:
> We're running Cruise Control on 10 vms that kick off our functional test
> suites the majority of which are using Watir. Did you have any specific
> questions? I also put together a quick blog post on setting one up from
> scratch:
> http://charleybakersblog.bl...
>
> -Charley
>
> Emil Sandin wrote:
>> Has anyone set up a Continous integration server running watir tests?
>> Any comparisons or tips?
>>
>> Kind Regards
>> Emil

Not really any specific questions, I've never done it in any language,
so any input is appreciated. I have already seen your blog about it, but
haven't tried it out yet. But I definitely will.
--
Posted via http://www.ruby-....