test-check

nwjsmith 2019-02-08T20:21:36.076600Z

If I upgrade test.check from 0.9.0 to 0.10.0, will the same seed still produce the same test values?

nwjsmith 2019-02-08T20:22:26.077600Z

(not specifically thinking about those versions, just checking my gut feeling. My gut feeling is that they won’t stay the same across test.check versions)

2019-02-08T21:51:07.078400Z

@nwjsmith that gut feeling is right, there's no attempt to preserve that, since sometimes changes involve improvements to a generator's distribution but in this particular case I think a lot of the lower-level generators will stay the same

2019-02-08T21:51:28.078800Z

recursive-gen is the only one that I know for sure would be different

2019-02-08T21:51:40.079100Z

which I guess extends to gen/any and friends as well

nwjsmith 2019-02-08T22:23:05.079300Z

good to know, thanks!