> So this is weird.
>
> on my current project I've been working on speeding up specs, and I
> just found that
>
> time rake spec => 4m 0s
>
> whereas
>
> time rake spec:controllers spec:models spec:helpers spec:lib => 2m 32s
Do those rake tasks run rake db:test:prepare, and other dependencies
of rake spec?
How are you getting those numbers?
Scott
>
>
> (we don't have any view specs) any idea why this might be true? I
> compared numbers of tests and got the same number both ways, just
> running everything together seems to make it take almost twice as
> long... Is anyone else seeing this?
>
> If it matters, we have 1183 tests spread more or less evenly across
> each of controllers, models, helpers, and lib.
>
> Jeremy
> _______________________________________________
> rspec-users mailing list
> rspec...@rubyforge.org
> http://rubyforge.org/mailman/listinfo/rspec-users
_______________________________________________
rspec-users mailing list
rspec...@rubyforge.org
http://rubyforge.org/mailman/listinfo/rspec-users
Do those rake tasks run rake db:test:prepare, and other dependencies of rake spec?
On Jan 28, 2009, at 3:21 PM, Jeremy Lightsmith wrote:
So this is weird.
on my current project I've been working on speeding up specs, and I just found that
time rake spec => 4m 0s
whereas
time rake spec:controllers spec:models spec:helpers spec:lib => 2m 32s
How are you getting those numbers?
Scott