-
Notifications
You must be signed in to change notification settings - Fork 61
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
fix: parameter aggregation fix #1443
Conversation
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
A comment to review - only values, display-name (if modified in markdown) and param-id will appear in final assembled-profile |
…already Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
…g shown in assembled profile Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
param_dict[const.PROFILE_VALUES].remove('<REPLACE_ME>') | ||
param_dict[const.VALUES] = param_dict[const.PROFILE_VALUES] | ||
if not write_mode: | ||
param_dict.pop(const.PROFILE_VALUES) | ||
final_param_dict[param_id] = param_dict |
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.
What is the additional check for write mode? it was not there earlier.
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.
This is meant to not write replace me or pop profile values in read mode. Meaning that while writing into markdown replace me is not going to be removed or profile values are not as well. Logic before was implemented differently to pop the value out
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
…mpliance-trestle into fix/paramater-aggregation
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
* fix: parameter aggregation fix Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: arranging tests Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: triggering build Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: increase time out for cache response Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: profile-values are shown in markdown even when there are values already Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: adding alt identifier validation Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: correct profile values validation Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: remove parameter aggregation from assembly and remove label being shown in assembled profile Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: correcting test failures and various formatting issues Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: change order for parameters in markdown Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: not setting empty values Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> --------- Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
* fix: parameter aggregation fix Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: arranging tests Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: triggering build Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: increase time out for cache response Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: profile-values are shown in markdown even when there are values already Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: adding alt identifier validation Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: correct profile values validation Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: remove parameter aggregation from assembly and remove label being shown in assembled profile Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: correcting test failures and various formatting issues Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: change order for parameters in markdown Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> * fix: not setting empty values Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]> --------- Signed-off-by: Alejandro Jose Leiva Palomo <[email protected]>
Types of changes
develop
->main
)Quality assurance (all should be covered).
Summary
Fixes #1442
Key links:
Before you merge