I would like to write a setup() or some other fixture that sets a unique random number seed for each replicant launched with --runs. Hence, if I used --runs 5 then I would get five identical tests, except each test would have a distinct pseudo-random sequence of draws. The five sequences would be the same on every run.
Is this possible?
I would like to write a
setup()or some other fixture that sets a unique random number seed for each replicant launched with--runs. Hence, if I used--runs 5then I would get five identical tests, except each test would have a distinct pseudo-random sequence of draws. The five sequences would be the same on every run.Is this possible?