* fixed what seems to be a typo * added load_mock_device in common.py so it loads all the required things into the mocks so they don't throw exceptions for mocks not being able to convert to int * reverted change in homeassistant/components/dyson/sensor.py added both values to the mock device (volatil and volatile)
8 lines
395 B
Python
8 lines
395 B
Python
"""List of modules that have uncaught exceptions today. Will be shrunk over time."""
|
|
IGNORE_UNCAUGHT_EXCEPTIONS = [
|
|
("tests.components.ios.test_init", "test_creating_entry_sets_up_sensor"),
|
|
("tests.components.ios.test_init", "test_not_configuring_ios_not_creates_entry"),
|
|
("tests.components.local_file.test_camera", "test_file_not_readable"),
|
|
]
|
|
|
|
IGNORE_UNCAUGHT_JSON_EXCEPTIONS = []
|