* Add tests to emoncms * Reduce snapshot size * Reduce snapshot size * run hassfest to update CODEOWNERS file * Update requirements_test_all.txt * Update tests/components/emoncms/test_sensor.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * Dont use snapshot when testing state change --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
12 lines
263 B
Python
12 lines
263 B
Python
"""Constants for the emoncms integration."""
|
|
|
|
import logging
|
|
|
|
CONF_EXCLUDE_FEEDID = "exclude_feed_id"
|
|
CONF_ONLY_INCLUDE_FEEDID = "include_only_feed_id"
|
|
CONF_MESSAGE = "message"
|
|
CONF_SUCCESS = "success"
|
|
DOMAIN = "emoncms"
|
|
|
|
|
|
LOGGER = logging.getLogger(__package__)
|