-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
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
[climate] Fix ecobee flaky test #25019
Conversation
ECOBEE_HVAC_TO_HASS = collections.OrderedDict([ | ||
('heat', HVAC_MODE_HEAT), | ||
('cool', HVAC_MODE_COOL), | ||
('auto', HVAC_MODE_AUTO), |
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 know this wasn't the scope of this PR, but this should be mapped to HVAC_MODE_HEAT_COOL
. Ecobee allows you to set heat/cool setpoints when in "Auto" mode. This is true for probably nearly all of the US thermostats and anyone using "auto" in the new schema likely mapped incorrectly.
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.
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.
Yeah, hence why I opened that issue -- here is an example of where it was done incorrectly under the new schema. :)
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.
should not block this pull thou since it fixes broken test in master
Was the order change intended? so that it no longer map it to auxHeatOnly? |
Yeah, we want |
Description:
Fix ecobee flaky test. Found by @elupus
Related issue (if applicable): fixes #23899 (comment)