How to get the entity object back after async_setup

I’m working on some unit tests for an integration and want to get the entity object.

Currently the test calls async_setup which then calls into the integrations climate.py to setup a new climate object derived from ClimateEntityThis all works fine.

How do I from the HASS object retrieve this ClimateEntity?

1 Like

I also have the same question. :grimacing:
I use climate entities that are unable to report real room temperature. I would like to implement a proxy entity which overrides the method for reporting the current temperature and reports an external sensor temperature instead - a RegistryEntry object does not seem to be sufficient for this :frowning: