36

currently I'm running more than 1k examples and it's taking a long time to complete (more than 20 minutes!!!).

I'd like to identify which examples are the ones taking more time to complete, is there any way to run rspec and return the time each example takes to complete(individually)? I'm using rspec 1.3.0 and rspec-rails 1.2.3

Matt Briggs
  • 41,224
  • 16
  • 95
  • 126
jpemberthy
  • 7,473
  • 8
  • 44
  • 52
  • 3
    You may want to look at this: http://37signals.com/svn/posts/2742-the-road-to-faster-tests – Hock Feb 01 '11 at 00:52

1 Answers1

57

You can use profiling to list your 10 slowest examples:

spec -p spec/*/*_spec.rb --colour --format profile

If you run this on a specific test suite you can get the 10 slowest examples from a smaller subset of examples:

spec -p spec/models/user_spec.rb --format profile

Newer Versions of Rspec

For newer versions of rspec you should use the --profile option:

rspec spec/ --profile         | (shows the 10 slowest examples)
rspec spec/ --profile 2       | (shows the 2  slowest examples)
hayesgm
  • 8,678
  • 1
  • 38
  • 40
Pan Thomakos
  • 34,082
  • 9
  • 88
  • 85