From 2b0eccf9bdaa4c2103ce68c19bf13f5da11b2a64 Mon Sep 17 00:00:00 2001 From: Malaber Date: Sun, 16 Mar 2025 13:44:54 +0100 Subject: [PATCH] Skip profiling by default --- spec/spec_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 3139ef1..17dc9ad 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -100,6 +100,6 @@ RSpec.configure do |config| config.example_status_persistence_file_path = 'specs_with_runtime.txt' - # Run ruby-prof - Dir[File.expand_path('support/**/*.rb', __dir__)].each { |f| require f } + # Run ruby-prof for profiling + # Dir[File.expand_path('support/**/*.rb', __dir__)].each { |f| require f } end