-
Notifications
You must be signed in to change notification settings - Fork 3
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: add parse_raw_upload #63
base: main
Are you sure you want to change the base?
Conversation
we will need to handle msgpacking, base64 decoding and zlib decompressing
we want to document the new function that we're going to implement
we want to support parsing raw upload files instead of individual JUnit XML files the input of this new function is the raw upload in byte form the output is a messagepacked binary payload containing the results of the parsing and the raw upload in readable format in byte form
1117e75
to
7920ff8
Compare
Codecov ReportAttention: Patch coverage is ✅ All tests successful. No failed tests found.
📢 Thoughts on this report? Let us know! |
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## main #63 +/- ##
==========================================
+ Coverage 88.68% 89.48% +0.79%
==========================================
Files 5 6 +1
Lines 707 770 +63
==========================================
+ Hits 627 689 +62
- Misses 80 81 +1 ☔ View full report in Codecov by Sentry. |
we want to support parsing raw upload files instead of individual JUnit
XML files
the input of this new function is the raw upload in byte form
the output is a messagepacked binary payload containing the results of
the parsing and the raw upload in readable format in byte form
Depends on: #62