-
Notifications
You must be signed in to change notification settings - Fork 2
Add a check for malformed manifest files #242
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
Conversation
mtauraso
commented
Mar 20, 2025
- When manifest or filter_catalog files contain filenames that are obviously for the wrong object ID, we will drop the relevant object and emit a warning
- Testing system extended to allow tests for malformed manifests to be written.
- Small fixup to .setup_dev.sh script to make sure that it's promise to "not output logs" unless there is an error is actually true.
7d85104 to
2344e5f
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #242 +/- ##
==========================================
+ Coverage 35.55% 36.04% +0.49%
==========================================
Files 33 33
Lines 2610 2627 +17
==========================================
+ Hits 928 947 +19
+ Misses 1682 1680 -2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
2344e5f to
2465eb0
Compare
aritraghsh09
left a comment
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.
LGTM!
drewoldag
left a comment
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.
Looks good to me. Made a couple of small suggestions, nothing that should block moving ahead.
| echo "This might take a few minutes. Only errors will be printed to stdout" | ||
| python -m pip install -e .'[dev]' > /dev/null | ||
| if [ -f docs/requirements.txt ]; then python -m pip install -r docs/requirements.txt; fi | ||
| if [ -f docs/requirements.txt ]; then python -m pip install -r docs/requirements.txt > /dev/null; fi |
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.
If you haven't already, it would be worthwhile percolating this up to the Python Project Template.
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.
cae2913 to
ae52b7e
Compare
- When manifest or filter_catalog files contain filenames that are obviously for the wrong object ID, we will drop the relevant object and emit a warning - Testing system extended to allow tests for malformed manifests to be written. - Small fixup to .setup_dev.sh script to make sure that it's promise to "not output logs" unless there is an error is actually true.
ae52b7e to
ce02439
Compare
- When manifest or filter_catalog files contain filenames that are obviously for the wrong object ID, we will drop the relevant object and emit a warning - Testing system extended to allow tests for malformed manifests to be written. - Small fixup to .setup_dev.sh script to make sure that it's promise to "not output logs" unless there is an error is actually true.