Closed sckott closed 8 months ago
@sckott Thanks for the PR. This looks good to me :) Please feel free to add your contribution to the NEWS.md
:)
Thanks, will do
Okay, I added news item, let me know if i should change it at all.
Also, I tried to run tests, but ran into some issues that I don't think are related to my changes, so gave up on that. Seems like the tests didn't run in CI either Reason I ask is because this change I think affects s3_file_download_async
and the copy functions, and I wanted to make sure I didn't break thoes. Can you test?
@sckott ah thanks for that, I didn't realise the tests weren't working correctly. I will look into it :)
Ran this locally and it seems to be working. Not 100% sure why this PR isn't picking up the environmental variables
Possibly it is trying to take environment variables from your fork 🤔 but I am not sure. I will merge for now and check with subsequent PRs
@sckott Seems to be fine now https://github.com/DyfanJones/s3fs/actions/runs/8233733113/job/22513849085#step:5:178 😄
Not 100% sure why this PR isn't picking up the environmental variables
i'm pretty sure that env vars aren't available in PRs
Thanks for merging!
two changes here:
&
to double&&
as I assume you intended to end up with a single boolean in the if block?fs::is_dir(new_path)
toall(fs::is_dir(new_path))
so that i can pass in multiple paths tos3_file_download
. perhaps this is the wrong behavior? I don't know the code here well enough to knowWith current version of the package
With this change