You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
env -i LC_COLLATE= R -q -e 'withr::with_collate("en_US", sort(c("_a", "a")))'# normal run
env -i LC_COLLATE=C R -q -e 'withr::with_collate("en_US", sort(c("_a", "a")))'# as run by R CMD check
Since the documentation of with_collate does not say anything about the need to take existing environment variables into account, I wonder if Sys.setenv should be added to ensure reproducibility regardless of environment variables.