mirror of
https://github.com/home-assistant/core.git
synced 2025-12-20 02:48:57 +00:00
* Initial version * Baseline release * Refactor based on first PR feedback * Refactoring based on second PR feedback * Initial version * Baseline release * Refactor based on first PR feedback * Refactoring based on second PR feedback * Refactoring based on PR feedback * Refactoring based on PR feedback * Remove extra attribute soil type Soil type isn't really a sensor, but more like a configuration entity. Move soil type to a different PR to keep this PR simpler. * Refactor SensoterraSensor to a named tuple * Implement feedback on PR * Remove .coveragerc * Add async_set_unique_id to config flow * Small fix based on feedback * Add test form unique_id * Fix * Fix --------- Co-authored-by: Joostlek <joostlek@outlook.com>
8 lines
308 B
Python
8 lines
308 B
Python
"""Constants for the test Sensoterra integration."""
|
|
|
|
API_TOKEN = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJleHAiOjE4NTYzMDQwMDAsInN1YiI6IjM5In0.yxdXXlc1DqopqDRHfAVzFrMqZJl6nKLpu1dV8alHvVY"
|
|
API_EMAIL = "test-email@example.com"
|
|
API_PASSWORD = "test-password"
|
|
HASS_UUID = "phony-unique-id"
|
|
SOURCE_USER = "user"
|