Skip to content

Commit

Permalink
feat: Bump requirements for Home Assistant 2023.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Sopel committed Feb 2, 2023
1 parent 08c54e2 commit 3910f81
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
"render_readme": true,
"version": "0.5.0",
"iot_class": "Local Polling",
"homeassistant": "2023.2.0b3"
"homeassistant": "2023.2.0"
}
4 changes: 2 additions & 2 deletions requirements.test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pytest>=7.2.0
pytest>=7.2.1
pytest-cov>=3.0.0
pytest-asyncio>=0.20.2
homeassistant>=2023.2.0b4
homeassistant>=2023.2.0
python-ember-mug==0.5.3
home-assistant-bluetooth
git+https://github.com/MatthewFlamm/pytest-homeassistant-custom-component.git@master
Expand Down
3 changes: 2 additions & 1 deletion tests/test_config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@
CONF_TEMPERATURE_UNIT,
UnitOfTemperature,
)
from homeassistant.core import HomeAssistant
from homeassistant.data_entry_flow import FlowResultType
import pytest
from voluptuous import MultipleInvalid

from tests import MUG_SERVICE_INFO, TEST_MAC, TEST_MUG_NAME, patch_async_setup_entry


async def test_bluetooth_discovery(hass):
async def test_bluetooth_discovery(hass: HomeAssistant) -> None:
"""Test discovery via bluetooth with a valid device."""
result = await hass.config_entries.flow.async_init(
"ember_mug",
Expand Down

0 comments on commit 3910f81

Please sign in to comment.