From 954b62e06edf5f04434a11eab87f36473a0c6e59 Mon Sep 17 00:00:00 2001 From: Malaber Date: Sun, 16 Mar 2025 12:44:07 +0100 Subject: [PATCH] Debugging for slowest specs --- spec/spec_helper.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index f38f403..055accf 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -84,18 +84,19 @@ RSpec.configure do |config| # # Print the 10 slowest examples and example groups at the # # end of the spec run, to help surface which specs are running # # particularly slow. - # config.profile_examples = 10 + config.profile_examples = 10 # # # Run specs in random order to surface order dependencies. If you find an # # order dependency and want to debug it, you can fix the order by providing # # the seed, which is printed after each run. # # --seed 1234 - # config.order = :random + config.order = :random # # # Seed global randomization in this process using the `--seed` CLI option. # # Setting this allows you to use `--seed` to deterministically reproduce # # test failures related to randomization by passing the same `--seed` value # # as the one that triggered the failure. - # Kernel.srand config.seed - config.example_status_persistence_file_path = 'specs_with_runtime.txt' + Kernel.srand config.seed + + config.example_status_persistence_file_path = 'specs_with_runtime.txt' end