-
Notifications
You must be signed in to change notification settings - Fork 11
Further cleanup UploadArguments
and normalize flags
#862
Conversation
17aa192
to
571c280
Compare
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## main #862 +/- ##
==========================================
- Coverage 97.93% 97.93% -0.01%
==========================================
Files 444 444
Lines 35476 35463 -13
==========================================
- Hits 34744 34731 -13
Misses 732 732
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAttention: Patch coverage is ✅ All tests successful. No failed tests found.
@@ Coverage Diff @@
## main #862 +/- ##
==========================================
- Coverage 97.93% 97.93% -0.01%
==========================================
Files 444 444
Lines 35476 35463 -13
==========================================
- Hits 34744 34731 -13
Misses 732 732
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found.
@@ Coverage Diff @@
## main #862 +/- ##
==========================================
- Coverage 97.93% 97.93% -0.01%
==========================================
Files 444 444
Lines 35476 35463 -13
==========================================
- Hits 34744 34731 -13
Misses 732 732
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Codecov ReportAttention: Patch coverage is
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #862 +/- ##
==========================================
- Coverage 97.93% 97.93% -0.01%
==========================================
Files 444 444
Lines 35476 35463 -13
==========================================
- Hits 34744 34731 -13
Misses 732 732
Flags with carried forward coverage won't be shown. Click here to find out more.
|
7a84c55
to
c6baa4e
Compare
repoid=repoid, | ||
commitid=commitid, | ||
commit_yaml=commit_yaml, | ||
params=deepcopy(params), |
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.
I see we got rid of deepcopy here but I don't see any writing/changes to anything inside of it. I'm curious why we had this in the first place 🤔
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.
Indeed yes, thats why I am cleaning this up :-)
c6baa4e
to
f3dd525
Compare
Normalizes the `flags`, so they are always a `list`. Otherwise, this uses the `UploadArguments` type in more places, and cleans up usage of `upload_pk` in more places. Another cleanup was removing the backwards compatibility for the old `processing_results` being passed from the `Processor` to the `Finisher`.
f3dd525
to
f9d3a88
Compare
Normalizes the
flags
, so they are always alist
. Otherwise, this uses theUploadArguments
type in more places, and cleans up usage ofupload_pk
in more places.Another cleanup was removing the backwards compatibility for the old
processing_results
being passed from theProcessor
to theFinisher
.