gh-110171: libregrtest always sets random.seed unless --no-use-randseed is provided#110172
gh-110171: libregrtest always sets random.seed unless --no-use-randseed is provided#110172vstinner merged 8 commits intopython:mainfrom
libregrtest always sets random.seed unless --no-use-randseed is provided#110172Conversation
…-use-randseed` is provided
vstinner
left a comment
There was a problem hiding this comment.
I suggest to change setup_tests(). Replace:
if runtests.randomize:
random.seed(runtests.random_seed)
with:
random.seed(runtests.random_seed)
vstinner
left a comment
There was a problem hiding this comment.
One last request on the Changelog entry, and then I think that we will be good.
|
|
|
Refs #110168
libregrtestshould always setrandom.seed#110171