The usual sob story: my tests are running slowly.
My first thought was to profile the whole test suite to look for obvious wins (stubbing out network access or caches), so I added a ruby-prof task:
RubyProf::ProfileTask.new(:units) do |t|
t.test_files = FileList[RAILS_ROOT + '/test/unit/**/*_test.rb']
t.output_dir = Dir.tmpdir
t.printer = :graph
t.min_percent = 1
end
Unfortunately, this profiles each test individually. Is there a way to get an aggregate over all of those test classes?
ruby-prof test_suite_name.rbwithout adding any ruby-prof specific code to your tests? – Andrew Grimm Aug 5 '10 at 23:31requireall the other files (or files thatrequireother files). However, I don't know if this'll play nice with Rails' magic. – Andrew Grimm Aug 6 '10 at 0:12