-
Notifications
You must be signed in to change notification settings - Fork 28
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
feat: handle file not found from CLI #1075
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #1075 +/- ##
==========================================
+ Coverage 96.09% 96.14% +0.05%
==========================================
Files 829 832 +3
Lines 19384 19817 +433
==========================================
+ Hits 18627 19053 +426
- Misses 757 764 +7
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. 📢 Thoughts on this report? Let us know! |
✅ All tests successful. No failed tests were found. 📣 Thoughts on this report? Let Codecov know! | Powered by Codecov |
we want to be able to notify the user with a comment when they get a file not found error from the CLI so this is our way of doing that we create a "placeholder" upload which represents this attempt at an upload that was not able to find a file this upload goes through the upload flow with a placeholder storage path (because we don't want the user to upload anything here) and when it gets to the TA processor, that step will create an upload error which will get notified like all other errors
5d690a7
to
2a1a03b
Compare
depends on the migration from: codecov/shared#471 being run
we want to be able to notify the user with a comment when they get a file not found error from the CLI so this is our way of doing that
we create a "placeholder" upload which represents this attempt at an upload that was not able to find a file
this upload goes through the upload flow with a placeholder storage path (because we don't want the user to upload anything here) and when it gets to the TA processor, that step will create an upload error which will get notified like all other errors