1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Fail tests if wrapped callbacks or coroutines throw (#35010)

This commit is contained in:
Erik Montnemery
2020-05-06 23:14:57 +02:00
committed by GitHub
parent b35306052d
commit f1ecac92df
22 changed files with 156 additions and 38 deletions

View File

@@ -0,0 +1,12 @@
"""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",
),
]