1
mirror of https://github.com/home-assistant/core synced 2024-09-09 12:51:22 +02:00
ha-core/tests/ignore_uncaught_exceptions.py

17 lines
562 B
Python
Raw Normal View History

"""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",
),
2020-05-07 03:40:21 +02:00
(
"tests.components.unifi.test_controller",
"test_wireless_client_event_calls_update_wireless_devices",
),
]