steven shingler
2009-Mar-13 08:42 UTC
[rspec-users] profile format to give overall time...?
Hi all, How can I get cucumber to tell me how long my entire feature set has taken to run? (In the same way that RSpec does, for example) I have taken a look at the profile formatter, which is very cool and useful but doesn''t give the overall time for the feature ''suite''. I know that (on *nix) I can use the ''time'' command, but it would be cool to have something within cucumber itself. Thanks a lot, Steven
aslak hellesoy
2009-Mar-13 09:36 UTC
[rspec-users] profile format to give overall time...?
On Fri, Mar 13, 2009 at 9:42 AM, steven shingler <shingler at gmail.com> wrote:> Hi all, > > How can I get cucumber to tell me how long my entire feature set has > taken to run? >By submitting a feature request :-) http://wiki.github.com/aslakhellesoy/cucumber/get-in-touch Aslak> > (In the same way that RSpec does, for example) > > I have taken a look at the profile formatter, which is very cool and > useful but doesn''t give the overall time for the feature ''suite''. > > I know that (on *nix) I can use the ''time'' command, but it would be > cool to have something within cucumber itself. > > Thanks a lot, > Steven > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/rspec-users/attachments/20090313/392eaab2/attachment.html>
steven shingler wrote:> Hi all, > > How can I get cucumber to tell me how long my entire feature set has > taken to run? > > (In the same way that RSpec does, for example) > > I have taken a look at the profile formatter, which is very cool and > useful but doesn''t give the overall time for the feature ''suite''. > >You are quite right, the profile formatter should also give you an overall execution time. Would you mind raising a ticket in lighthouse for this please? http://rspec.lighthouseapp.com/projects/16211-cucumber/overview It would also be useful I think to show the execution time in the pretty formatter in the same way that Rspec does. Thanks -- Joseph Wilk http://blog.josephwilk.net> I know that (on *nix) I can use the ''time'' command, but it would be > cool to have something within cucumber itself. > > Thanks a lot, > Steven > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users > >
steven shingler
2009-Mar-13 09:58 UTC
[rspec-users] profile format to give overall time...?
done! Thanks, Steven On Fri, Mar 13, 2009 at 9:36 AM, aslak hellesoy <aslak.hellesoy at gmail.com> wrote:> > > On Fri, Mar 13, 2009 at 9:42 AM, steven shingler <shingler at gmail.com> wrote: >> >> Hi all, >> >> How can I get cucumber to tell me how long my entire feature set has >> taken to run? > > By submitting a feature request :-) > > http://wiki.github.com/aslakhellesoy/cucumber/get-in-touch > > Aslak > >> >> (In the same way that RSpec does, for example) >> >> I have taken a look at the profile formatter, which is very cool and >> useful but doesn''t give the overall time for the feature ''suite''. >> >> I know that (on *nix) I can use the ''time'' command, but it would be >> cool to have something within cucumber itself. >> >> Thanks a lot, >> Steven >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users > > > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
steven shingler
2009-Mar-13 10:10 UTC
[rspec-users] profile format to give overall time...?
Have jotted a ticket here: http://rspec.lighthouseapp.com/projects/16211/tickets/228-get-cucumber-to-tell-me-how-long-my-entire-feature-set-has-taken-to-run#ticket-228-1 Please edit accordingly :) On Fri, Mar 13, 2009 at 9:58 AM, Joseph Wilk <joe at josephwilk.net> wrote:> steven shingler wrote: >> >> Hi all, >> >> How can I get cucumber to tell me how long my entire feature set has >> taken to run? >> >> (In the same way that RSpec does, for example) >> >> I have taken a look at the profile formatter, which is very cool and >> useful but doesn''t give the overall time for the feature ''suite''. >> >> > > You are quite right, the profile formatter should also give you an overall > execution time. > > Would you mind raising a ticket in lighthouse for this please? > > http://rspec.lighthouseapp.com/projects/16211-cucumber/overview > > It would also be useful I think to show the execution time in the pretty > formatter in the same way that Rspec does. > > Thanks > > -- > Joseph Wilk > http://blog.josephwilk.net > > >> I know that (on *nix) I can use the ''time'' command, but it would be >> cool to have something within cucumber itself. >> >> Thanks a lot, >> Steven >> _______________________________________________ >> rspec-users mailing list >> rspec-users at rubyforge.org >> http://rubyforge.org/mailman/listinfo/rspec-users >> >> > > > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >
Steven Shingler wrote:> Hi all, > > How can I get cucumber to tell me how long my entire feature set has > taken to run? >$ time rake features ... 29 scenarios 165 steps passed 4 steps failed 10 steps skipped rake aborted! Command failed with status (1): [/usr/bin/ruby -I "/usr/lib64/ruby/gems/1.8...] (See full trace by running task with --trace) real 3m9.355s user 2m30.589s sys 0m37.730s -- Posted via http://www.ruby-forum.com/.
steven shingler
2009-Mar-13 15:19 UTC
[rspec-users] profile format to give overall time...?
Hi James, Yep, I mentioned the time command in my original post, I''m looking for a within-cucumber option. :) Thanks, Steven On Fri, Mar 13, 2009 at 2:12 PM, James Byrne <lists at ruby-forum.com> wrote:> Steven Shingler wrote: >> Hi all, >> >> How can I get cucumber to tell me how long my entire feature set has >> taken to run? >> > > $ time rake features > ... > > 29 scenarios > 165 steps passed > 4 steps failed > 10 steps skipped > rake aborted! > Command failed with status (1): [/usr/bin/ruby -I > "/usr/lib64/ruby/gems/1.8...] > > (See full trace by running task with --trace) > > real ? ?3m9.355s > user ? ?2m30.589s > sys ? ? 0m37.730s > -- > Posted via http://www.ruby-forum.com/. > _______________________________________________ > rspec-users mailing list > rspec-users at rubyforge.org > http://rubyforge.org/mailman/listinfo/rspec-users >