How to profile RSpec with perftools and bundler?

前端 未结 1 1282
既然无缘
既然无缘 2021-02-07 09:28

I need to profile the test suite that I usually run with bundle exec rspec spec/ and produce the GIF image.

What is the command to run the perftools.rb so t

相关标签:
1条回答
  • 2021-02-07 09:35

    I too had to dig around to get this. Here is what I did

    1. Put this in spec_helper.rb:

      config.before :suite do
        PerfTools::CpuProfiler.start("/tmp/rspec_profile")
      end
      
      config.after :suite do
        PerfTools::CpuProfiler.stop
      end
      
    2. Run your rspec

    3. Run pprof to get your numbers

      pprof.rb --text  /tmp/rspec_profile
      
    0 讨论(0)
提交回复
热议问题