-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Setting preset does not update color options for D500 #12272
Conversation
# License: Apache 2.0. See LICENSE file in root directory. | ||
# Copyright(c) 2023 Intel Corporation. All Rights Reserved. | ||
|
||
# test:donotrun:gha |
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 does it means?
Where would this test run?
Aren't we missing
#device d400*
#device D500*? (not sure it will work)
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.
Beside that question, great test!!
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 checked,
LibCI: -D- test-live-options-presets is not live; skipping
GHA - -D- test-live-options-presets is marked do-not-run; skipping
GHA is not running live tests IMO.
You should add the matching #device keywords
# License: Apache 2.0. See LICENSE file in root directory. | ||
# Copyright(c) 2023 Intel Corporation. All Rights Reserved. | ||
|
||
# test:device each(D400*) each(D500*) |
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 might not work for 2 reasons.
- not sure this syntax is supported, let's see
Normally I know we do:
#test:device each(D400*)
#test:device each(D500*)
- Not sure D500* will work, I think since we do not have D500 discovered LibCI might fail
If it happened, we need to remove it here and add it in another PR elsewere
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 will delete D500 for now.
I know we don't have D500 yet on LibCI but we will have soon. We will need to think on a solution to all the tests, adding D500 to all seems to much.
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
There were 2 design options:
device_interface
and each concrete device type will implement if color options need setting.advanced_mode
deciding based on device type. Might need to updateadvanced_mode
module for future devices.I selected option number 2.