From e55578681e01b954853570c4fe27f3ed9be49329 Mon Sep 17 00:00:00 2001 From: Daniel Waterworth Date: Fri, 7 Aug 2020 16:51:53 +0100 Subject: [PATCH] DEV: Add seed explicitly in turbo_rspec so that runs can be reproduced --- lib/turbo_tests/runner.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/turbo_tests/runner.rb b/lib/turbo_tests/runner.rb index 808e18a28ea..aa4d8c35e15 100644 --- a/lib/turbo_tests/runner.rb +++ b/lib/turbo_tests/runner.rb @@ -157,6 +157,7 @@ module TurboTests command = [ "bundle", "exec", "rspec", *extra_args, + "--seed", rand(2**16).to_s, "--format", "TurboTests::JsonRowsFormatter", "--out", tmp_filename, *record_runtime_options,