mirror of
https://github.com/home-assistant/core.git
synced 2025-04-29 11:47:50 +00:00
Fix uncaught exceptions in upnp (#33604)
removed also the yr tests that are already successful
This commit is contained in:
parent
b60527c986
commit
0d05bd309a
@ -19,6 +19,7 @@ class MockDevice(Device):
|
|||||||
device = MagicMock()
|
device = MagicMock()
|
||||||
device.manufacturer = "mock-manuf"
|
device.manufacturer = "mock-manuf"
|
||||||
device.name = "mock-name"
|
device.name = "mock-name"
|
||||||
|
device.model_name = "mock-model-name"
|
||||||
super().__init__(device)
|
super().__init__(device)
|
||||||
self._udn = udn
|
self._udn = udn
|
||||||
self.added_port_mappings = []
|
self.added_port_mappings = []
|
||||||
|
@ -57,11 +57,6 @@ IGNORE_UNCAUGHT_EXCEPTIONS = [
|
|||||||
"test_configuring_devices_from_multiple_sources",
|
"test_configuring_devices_from_multiple_sources",
|
||||||
),
|
),
|
||||||
("tests.components.unifi_direct.test_device_tracker", "test_get_scanner"),
|
("tests.components.unifi_direct.test_device_tracker", "test_get_scanner"),
|
||||||
("tests.components.upnp.test_init", "test_async_setup_entry_default"),
|
|
||||||
("tests.components.upnp.test_init", "test_async_setup_entry_port_mapping"),
|
|
||||||
("tests.components.yr.test_sensor", "test_default_setup"),
|
|
||||||
("tests.components.yr.test_sensor", "test_custom_setup"),
|
|
||||||
("tests.components.yr.test_sensor", "test_forecast_setup"),
|
|
||||||
("tests.components.zwave.test_init", "test_power_schemes"),
|
("tests.components.zwave.test_init", "test_power_schemes"),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user