-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ensure reproducible if using model cache #470
base: main
Are you sure you want to change the base?
Conversation
@gowerc doesn't .Random.seed always exist? At least I get Restarting R session...
> exists(".Random.seed")
[1] TRUE
> ls()
character(0)
> .Random.seed <<- .Random.seed
> ls()
character(0)
> exists(".Random.seed")
[1] TRUE |
I think it doesn't necessarily exist. eg if I start a new R session from the terminal
|
In fairness I had no idea it wasn't created on new R sessions until all the CICD tests failed unexpectedly 😓 |
@gravesti - Ok should be good for review now. I adapted the code you shared a little bit as I realised when the processx update goes on CRAN the |
Closes #469
FYI @luwidmer