我需要分析我通常使用bundle exec rspec spec/运行的测试套件并生成gif图像。
运行perftools.rb以便与bundler一起正常工作的命令是什么?

最佳答案

我也得到处找才能弄到这个。这就是我所做的
把这个放到spec_helper.rb中:

config.before :suite do
  PerfTools::CpuProfiler.start("/tmp/rspec_profile")
end

config.after :suite do
  PerfTools::CpuProfiler.stop
end

运行rspec
运行pprof获取您的号码
pprof.rb --text  /tmp/rspec_profile

关于ruby-on-rails - 如何使用perftools和bundler来分析RSpec?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9680481/

10-09 14:16