Bump python-kasa to 0.5.4 for tplink (#103038)
This commit is contained in:
parent
e880ad7bda
commit
f944c68e01
4 changed files with 6 additions and 4 deletions
|
@ -169,5 +169,5 @@
|
||||||
"iot_class": "local_polling",
|
"iot_class": "local_polling",
|
||||||
"loggers": ["kasa"],
|
"loggers": ["kasa"],
|
||||||
"quality_scale": "platinum",
|
"quality_scale": "platinum",
|
||||||
"requirements": ["python-kasa[speedups]==0.5.3"]
|
"requirements": ["python-kasa[speedups]==0.5.4"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -2141,7 +2141,7 @@ python-join-api==0.0.9
|
||||||
python-juicenet==1.1.0
|
python-juicenet==1.1.0
|
||||||
|
|
||||||
# homeassistant.components.tplink
|
# homeassistant.components.tplink
|
||||||
python-kasa[speedups]==0.5.3
|
python-kasa[speedups]==0.5.4
|
||||||
|
|
||||||
# homeassistant.components.lirc
|
# homeassistant.components.lirc
|
||||||
# python-lirc==1.2.3
|
# python-lirc==1.2.3
|
||||||
|
|
|
@ -1597,7 +1597,7 @@ python-izone==1.2.9
|
||||||
python-juicenet==1.1.0
|
python-juicenet==1.1.0
|
||||||
|
|
||||||
# homeassistant.components.tplink
|
# homeassistant.components.tplink
|
||||||
python-kasa[speedups]==0.5.3
|
python-kasa[speedups]==0.5.4
|
||||||
|
|
||||||
# homeassistant.components.matter
|
# homeassistant.components.matter
|
||||||
python-matter-server==4.0.0
|
python-matter-server==4.0.0
|
||||||
|
|
|
@ -29,7 +29,9 @@ from tests.common import MockConfigEntry, async_fire_time_changed
|
||||||
|
|
||||||
async def test_configuring_tplink_causes_discovery(hass: HomeAssistant) -> None:
|
async def test_configuring_tplink_causes_discovery(hass: HomeAssistant) -> None:
|
||||||
"""Test that specifying empty config does discovery."""
|
"""Test that specifying empty config does discovery."""
|
||||||
with patch("homeassistant.components.tplink.Discover.discover") as discover:
|
with patch("homeassistant.components.tplink.Discover.discover") as discover, patch(
|
||||||
|
"homeassistant.components.tplink.Discover.discover_single"
|
||||||
|
):
|
||||||
discover.return_value = {MagicMock(): MagicMock()}
|
discover.return_value = {MagicMock(): MagicMock()}
|
||||||
await async_setup_component(hass, tplink.DOMAIN, {tplink.DOMAIN: {}})
|
await async_setup_component(hass, tplink.DOMAIN, {tplink.DOMAIN: {}})
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue