-
Notifications
You must be signed in to change notification settings - Fork 364
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
Allow to recursively search package #1270
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -635,7 +635,9 @@ def splitpath(path): | |
else: | ||
copytree(cwd, temp_project_path, metadata=False, symlinks=False) | ||
for glob_path in exclude_glob: | ||
for path in glob.glob(os.path.join(temp_project_path, glob_path)): | ||
# Use `recursive` to match paths deep in the directory tree | ||
# https://github.com/zappa/Zappa/issues/1269 | ||
for path in glob.glob(os.path.join(temp_project_path, glob_path), recursive=True): | ||
try: | ||
os.remove(path) | ||
except OSError: # is a directory | ||
|
@@ -767,7 +769,9 @@ def splitpath(path): | |
|
||
# Cleanup | ||
for glob_path in exclude_glob: | ||
for path in glob.glob(os.path.join(temp_project_path, glob_path)): | ||
# Use `recursive` to match paths deep in the directory tree | ||
# https://github.com/zappa/Zappa/issues/1269 | ||
for path in glob.glob(os.path.join(temp_project_path, glob_path), recursive=True): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same question of using |
||
try: | ||
os.remove(path) | ||
except OSError: # is a directory | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you think there's any downside to using
glob.iglob()
here instead ofglob.glob()
, asiglob()
returns an iterator, which should be easier on memory usage if a user decides to put massive folders with tons of files inexclude_glob
? Especially since this code may often running be running on a CI runner, and the free ones that Github/Gitlab provide aren't provisioned with very much RAM at all (IIRC, it's like 1GB, and most is taken up my the OS and CI runner software).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, yes, that's a great idea.