-
Notifications
You must be signed in to change notification settings - Fork 146
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
Feature clear launch configs #515
Conversation
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.
Concept seems solid to me, as well as implementation. If we can clear up some documentation/interface concerns and add a few tests, I think it will be good to go.
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.
Documentation looks good to me, and implementation makes sense.
I did request one change related to the default argument, but I think it can trivially be fixed by using None
.
I would still like to see some tests for this new action and extensions to the group action tests.
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.
One point for discussion, but looking good otherwise, maybe time to bring it out of draft?
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, several nitpicks but nothing serious
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.
Overall I like this patch. Left a few minor comments here and there, but otherwise this is pretty much ready to fly.
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.
@hidmic Can you rerun the CI? Latest commit should fix the flake errors from the previous CI builds. |
Alright, all green. We should probably run a more comprehensive CI now. @ivanpauno @wjwwood mind to take a look before I do that? |
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!
Thanks for the contribution @djchopp !
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.
Overall this looks great to me @djchopp.
Thanks for the work and the patience.
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.
@djchopp would you mind rebasing on top of |
@hidmic This is nearing the edge of my git knowledge so hopefully I did that correctly. Let me know if I did something stupid. |
@djchopp did you merge |
@hidimic Very possibly. Steps I did:
If you know how to fix, feel free to do so |
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
doc: fix docblock for newline style. Co-authored-by: William Woodall <[email protected]> Signed-off-by: djchopp <[email protected]>
doc: fix punctuation Co-authored-by: William Woodall <[email protected]> Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Co-authored-by: Michel Hidalgo <[email protected]> Signed-off-by: djchopp <[email protected]>
Co-authored-by: Michel Hidalgo <[email protected]> Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
Signed-off-by: djchopp <[email protected]>
@hidmic Thanks for the lesson! I had a copy saved off so was able to recover. Let me know if that looks better now. |
Thanks @djchopp ! Firing up CI again: |
Does this close #507? |
Indeed :) |
Adds the feature/functionality described in issue #507 such that launch configurations can be cleared within a current scope. The
ClearLaunchConfigurations
action compliments thePush*
andPop*
actions with the following use pattern:Additionally the
GroupAction
has been updated to also support clearing of the launch configurations utilizing the pattern above.