Conversation
Contributor
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #302 +/- ##
========================================
- Coverage 94.9% 94.4% -0.6%
========================================
Files 21 21
Lines 1341 1363 +22
========================================
+ Hits 1273 1287 +14
- Misses 68 76 +8
|
jayqi
approved these changes
Dec 18, 2022
Member
jayqi
left a comment
There was a problem hiding this comment.
Looks good. One comment typo, and a few minor comments.
Co-authored-by: Jay Qi <2721979+jayqi@users.noreply.github.com>
This was referenced Dec 18, 2022
Closed
This was referenced Dec 19, 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is primarily a fix for #155, but it should simplify and stabilize listing dirs from S3 in a way that makes a number of the other directory handling tasks easier (like #295, #181, #176, and #51).
One of the concerns is that this change may affect performance since we change both the recursive and non-recursive apis, so this PR includes an initial perf test suite for listing directories. See results below (TLDR: negligible change if any).
Bonus fixes:
pytest-xdistto requirements, which will run the test suite in parallel and results in decent speed up. Comparison of latestmasterrun and this branch shaves off ~10 minutes (makes sense since gh action machines have 2 cores):Closes #151
Closes #171
Closes #291
Perf from same machine
Before changes
With new changes