Re: Getting the bare ok count

2008-03-18 Thread Michael Peters
Philippe Bruhat (BooK) wrote: > I was under the impression that Smolder was specifically aimed at CPAN > distributions. Our tests are organised somewhat differently. Actually, it was designed for the test suites of our internal projects at $work. Part of my TPF grant was to make it more useful fo

Re: Getting the bare ok count

2008-03-18 Thread Philippe Bruhat (BooK)
On Tue, Mar 18, 2008 at 11:37:08AM -0400, Michael Peters wrote: > Philippe Bruhat (BooK) wrote: > > > I'm trying to ouput sexy graphs for our smoke history, and I want to > > include a lot of details. > > Have you looked at Smolder? It does historical graphs of smoke data as well as > nice HTML r

Re: Getting the bare ok count

2008-03-18 Thread Michael Peters
Philippe Bruhat (BooK) wrote: > I'm trying to ouput sexy graphs for our smoke history, and I want to > include a lot of details. Have you looked at Smolder? It does historical graphs of smoke data as well as nice HTML reports for individual smoke reports. http://sourceforge.net/projects/smolder

Re: Getting the bare ok count

2008-03-18 Thread Philippe Bruhat (BooK)
On Tue, Mar 18, 2008 at 04:32:48PM +0100, Philippe Bruhat (BooK) wrote: > > See attached example. > Of course, I always laugh at those who forget to attach the announced attachement. :-S -- Philippe Bruhat (BooK) Life is a play. The secret is to know your lines, respect the other players a

Re: Getting the bare ok count

2008-03-18 Thread Andy Armstrong
On 18 Mar 2008, at 15:32, Philippe Bruhat (BooK) wrote: The values I want to graph are computed as follow: $ok = $p->actual_passed - $p->todo_passed - $p->skip; $todo= $p->todo - $p->todo_passed; $skip= $p->skipped; $todo_ok = $p->todo_passed; $not_ok = $p->failed; $ok a

Getting the bare ok count

2008-03-18 Thread Philippe Bruhat (BooK)
Hi, I'm trying to ouput sexy graphs for our smoke history, and I want to include a lot of details. Each test can be one of: - ok(ok) - not ok # TODO (todo) - ok # SKIP (skip) - ok # TODO (todo_ok) - not ok(fail) I also graph the number of extra/missing tests (as the a