Version 2.2.4 appears to no longer display any seed information output, for success or failure, either at the beginning or the end of the run:
Finished in 7.38 seconds (files took 3.17 seconds to load)
467 examples, 0 failures
Finished in 5.24 seconds (files took 1.98 seconds to load)
467 examples, 1 failure
Failed examples:
rspec ./spec/models/foo_spec.rb:56 # 1 is expected to eq 2
Compare that to 2.2.3, which outputs at the start and the end of the test, as expected:
1 processes for 1 specs, ~ 1 specs per process
Randomized with seed 21152
# ...
Failures:
1) Foo is expected to eq 2
Failure/Error: specify { expect(1).to eq(2) }
expected: 2
got: 1
(compared using ==)
# ...
Finished in 5.47 seconds (files took 2 seconds to load)
467 examples, 1 failure
Failed examples:
rspec ./spec/models/foo_spec.rb:56 # Foo is expected to eq 2
Randomized with seed 21152
1 processes for 1 specs, ~ 1 specs per process
Randomized with seed 37227
# ...
Finished in 5.7 seconds (files took 2.06 seconds to load)
467 examples, 0 failures
Randomized with seed 37227
Version 2.2.4 appears to no longer display any seed information output, for success or failure, either at the beginning or the end of the run:
Compare that to 2.2.3, which outputs at the start and the end of the test, as expected: