mirror of
https://github.com/Electric-Special/ha-core.git
synced 2026-03-21 07:05:48 +01:00
13 lines
431 B
Python
13 lines
431 B
Python
"""List of tests that have uncaught exceptions today. Will be shrunk over time."""
|
|
IGNORE_UNCAUGHT_EXCEPTIONS = [
|
|
("test_homeassistant_bridge", "test_homeassistant_bridge_fan_setup",),
|
|
(
|
|
"tests.components.owntracks.test_device_tracker",
|
|
"test_mobile_multiple_async_enter_exit",
|
|
),
|
|
(
|
|
"tests.components.smartthings.test_init",
|
|
"test_event_handler_dispatches_updated_devices",
|
|
),
|
|
]
|