2020-05-06 21:14:57 +00:00
|
|
|
"""List of tests that have uncaught exceptions today. Will be shrunk over time."""
|
|
|
|
IGNORE_UNCAUGHT_EXCEPTIONS = [
|
2021-10-19 03:07:51 +00:00
|
|
|
(
|
|
|
|
# This test explicitly throws an uncaught exception
|
|
|
|
# and should not be removed.
|
|
|
|
"tests.test_runner",
|
|
|
|
"test_unhandled_exception_traceback",
|
|
|
|
),
|
2020-08-27 11:56:20 +00:00
|
|
|
(
|
|
|
|
"test_homeassistant_bridge",
|
|
|
|
"test_homeassistant_bridge_fan_setup",
|
|
|
|
),
|
2020-05-06 21:14:57 +00:00
|
|
|
(
|
|
|
|
"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 01:40:21 +00:00
|
|
|
(
|
|
|
|
"tests.components.unifi.test_controller",
|
|
|
|
"test_wireless_client_event_calls_update_wireless_devices",
|
|
|
|
),
|
2020-10-16 08:01:58 +00:00
|
|
|
("tests.components.iaqualink.test_config_flow", "test_with_invalid_credentials"),
|
|
|
|
("tests.components.iaqualink.test_config_flow", "test_with_existing_config"),
|
2020-05-06 21:14:57 +00:00
|
|
|
]
|