How can I generate a report that shows me my slowest running tests in Rails 3.2, Ruby 1.9?

StackOverflow https://stackoverflow.com/questions/23620763

  •  21-07-2023
  •  | 
  •  

سؤال

I know that RSpec has the --profile option, but I'm only using MiniTest/shoulda for my current project.

هل كانت مفيدة؟

المحلول

You can use minitest-reporters for this purpose. This gem provide multiple reporters to see output of your tests.

Minitest::Reporters.use! Minitest::Reporters::SpecReporter.new

Spec reporter shows the time which each test take to run. It shows the time on console, not as a report.

نصائح أخرى

You can just use:

rake TESTOPTS="-v"

right out of the box. eg:

rake TESTOPTS="-v" test:controllers

I have tested this with Ruby 1.9.3 on Rails 3.2.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top