-
Notifications
You must be signed in to change notification settings - Fork 76
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
Investigate the warning emitted by test_export_list.R:19:9
#438
Comments
This works with the current CRAN version 1.1.1 withr::with_tempdir({
mylist <- list(
mtcars3 = mtcars[1:10, ],
mtcars2 = mtcars[11:20, ],
mtcars1 = mtcars[21:32, ]
)
rio::export_list(mylist, file = paste0("file_", 1:3, ".csv"), archive = "arch/archive.zip")
file.exists("arch/archive.zip")
}) But not with |
By adding back these two lines to |
As it turns out, that Lines 50 to 67 in b79130e
Is there a better way to handle this? And #319 is still a hanging problem. |
Which also got emitted on CI. And actually, the expected file is not created.
The text was updated successfully, but these errors were encountered: