-
Notifications
You must be signed in to change notification settings - Fork 371
test(node): add OSConfig Default traits #8204
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
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.
This pull request modifies the IC-OS configuration types library (rs/ic_os/config_types/src/lib.rs).
Please ensure you have followed the Configuration Update Protocol guidelines——particularly if adding a new enum or enum variants:
Enum Variant Forward Compatibility Guidelines: If adding a new enum or new variants to an enum, ensure older versions can handle unknown variants gracefully by using #[serde(other)] on a fallback variant. See examples: GuestVMType::Unknown and Ipv6Config::Unknown.
To acknowledge this reminder and unblock the PR, dismiss this code review by:
- Going to the bottom of the pull request page
- Finding where this bot is requesting changes
- Clicking the three dots on the right
- Selecting "Dismiss review"
For complete guidelines, see the documentation at the top of rs/ic_os/config_types/src/lib.rs.
CONFIG_TYPES_COMPATIBILITY_REMINDER_DEDUP
Only changes to test code
NODE-1808
Adds GuestOSConfig, HostOSConfig, and SetupOSConfig Default trains to reduce test boilerplate. Unit tests now only must specify specific fields they care about.