Debugging for slowest specs
This commit is contained in:
parent
c8b0f1a7a3
commit
954b62e06e
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue