Update greeclimate to 0.10.3 (#43248)

* Update greeclimate to 0.10.3

* Device search needs to be mocked in tests
pull/43356/head
Clifford Roche 2020-11-15 12:06:51 -05:00 committed by Paulus Schoutsen
parent 26a7773da8
commit f1ec34007e
4 changed files with 5 additions and 5 deletions

View File

@ -3,6 +3,6 @@
"name": "Gree Climate",
"config_flow": true,
"documentation": "https://www.home-assistant.io/integrations/gree",
"requirements": ["greeclimate==0.10.2"],
"requirements": ["greeclimate==0.10.3"],
"codeowners": ["@cmroche"]
}

View File

@ -702,7 +702,7 @@ gpiozero==1.5.1
gps3==0.33.3
# homeassistant.components.gree
greeclimate==0.10.2
greeclimate==0.10.3
# homeassistant.components.greeneye_monitor
greeneye_monitor==2.1

View File

@ -358,7 +358,7 @@ google-cloud-pubsub==2.1.0
google-nest-sdm==0.1.14
# homeassistant.components.gree
greeclimate==0.10.2
greeclimate==0.10.3
# homeassistant.components.griddy
griddypower==0.1.0

View File

@ -8,7 +8,7 @@ from tests.async_mock import patch
from tests.common import MockConfigEntry
async def test_setup_simple(hass):
async def test_setup_simple(hass, discovery, device):
"""Test gree integration is setup."""
await async_setup_component(hass, GREE_DOMAIN, {})
await hass.async_block_till_done()
@ -17,7 +17,7 @@ async def test_setup_simple(hass):
assert len(hass.config_entries.flow.async_progress()) == 0
async def test_unload_config_entry(hass):
async def test_unload_config_entry(hass, discovery, device):
"""Test that the async_unload_entry works."""
# As we have currently no configuration, we just to pass the domain here.
entry = MockConfigEntry(domain=GREE_DOMAIN)