Skip to content
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

Make UnitSystem a frozen dataclass #140954

Merged
merged 2 commits into from
Mar 25, 2025

Conversation

thecode
Copy link
Member

@thecode thecode commented Mar 19, 2025

Proposed change

CI was failing since tests were modifying the UnitSystem metric constant which affected all tests if it is not set back to the original values after the test is finished, discussion about it suggested to make it a frozen data class.

Background: #140295, #140323

CI tests fixed already at: #140376, #140372, #140371, #140366, #140365, #140358, #140357 which can be seen that CI pass here for all tests.

With a frozen data class if a test modify the UnitSystem constant it fails (example of reverting #140365 locally):

E     dataclasses.FrozenInstanceError: cannot assign to field 'temperature_unit'

<string>:24: FrozenInstanceError

tests/components/lg_thinq/test_climate.pyFAILED tests/components/lg_thinq/test_climate.py::test_all_entities - dataclasses.FrozenInstanceError: cannot assign to field 'temperature_unit'

Type of change

  • Dependency upgrade
  • Bugfix (non-breaking change which fixes an issue)
  • New integration (thank you!)
  • New feature (which adds functionality to an existing integration)
  • Deprecation (breaking change to happen in the future)
  • Breaking change (fix/feature causing existing functionality to break)
  • Code quality improvements to existing code or addition of tests

Additional information

Checklist

  • The code change is tested and works locally.
  • Local tests pass. Your PR cannot be merged unless tests pass
  • There is no commented out code in this PR.
  • I have followed the development checklist
  • I have followed the perfect PR recommendations
  • The code has been formatted using Ruff (ruff format homeassistant tests)
  • Tests have been added to verify that the new code works.

If user exposed functionality or configuration variables are added/changed:

If the code communicates with devices, web services, or third-party tools:

  • The manifest file has all fields filled out correctly.
    Updated and included derived files by running: python3 -m script.hassfest.
  • New or updated dependencies have been added to requirements_all.txt.
    Updated by running python3 -m script.gen_requirements_all.
  • For the updated dependencies - a link to the changelog, or at minimum a diff between library versions is added to the PR description.

To help with the load of incoming pull requests:

@thecode thecode marked this pull request as ready for review March 19, 2025 21:06
@thecode thecode requested a review from a team as a code owner March 19, 2025 21:06
@thecode thecode changed the title Make UnitSystem a frozen dataclass Make UnitSystem a frozen dataclass Mar 19, 2025
@MartinHjelmare
Copy link
Member

Do we need to search for published custom integrations that would be affected by this change? We've seen before that custom integrations do weird things.

@thecode
Copy link
Member Author

thecode commented Mar 24, 2025

Do we need to search for published custom integrations that would be affected by this change? We've seen before that custom integrations do weird things.

I have tried to think of it, I can't be 100% sure, but I think if a custom integration modify the unit system it will already have undesired effects since this is the base for unit conversions and it globally used by all sensors so I assume this was only a bad pattern we used in tests.

@MartinHjelmare
Copy link
Member

MartinHjelmare commented Mar 24, 2025

Yes, it would already be bad, but it could be a hidden bug, while now it will raise an error immediately if the integration tries to modify the instance.

We should probably at least publish a dev blog about the change.

@thecode
Copy link
Member Author

thecode commented Mar 24, 2025

We should probably at least publish a dev blog about the change.

Yes, we should

Copy link
Member

@MartinHjelmare MartinHjelmare left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@MartinHjelmare MartinHjelmare merged commit 32a16ae into home-assistant:dev Mar 25, 2025
48 checks passed
@thecode thecode deleted the frozen-unit-system branch March 25, 2025 12:10
@github-actions github-actions bot locked and limited conversation to collaborators Mar 26, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants