Bump intents and fix tests (#152893)

This commit is contained in:
Michael Hansen
2025-09-24 09:24:42 -05:00
committed by GitHub
parent fdaceaddfd
commit c493c7dd67
7 changed files with 11 additions and 11 deletions
@@ -6,5 +6,5 @@
"documentation": "https://www.home-assistant.io/integrations/conversation",
"integration_type": "entity",
"quality_scale": "internal",
"requirements": ["hassil==3.2.0", "home-assistant-intents==2025.9.3"]
"requirements": ["hassil==3.2.0", "home-assistant-intents==2025.9.24"]
}
+1 -1
View File
@@ -40,7 +40,7 @@ hass-nabucasa==1.1.1
hassil==3.2.0
home-assistant-bluetooth==1.13.1
home-assistant-frontend==20250903.5
home-assistant-intents==2025.9.3
home-assistant-intents==2025.9.24
httpx==0.28.1
ifaddr==0.2.0
Jinja2==3.1.6
+1 -1
View File
@@ -1189,7 +1189,7 @@ holidays==0.81
home-assistant-frontend==20250903.5
# homeassistant.components.conversation
home-assistant-intents==2025.9.3
home-assistant-intents==2025.9.24
# homeassistant.components.homematicip_cloud
homematicip==2.3.0
+1 -1
View File
@@ -1038,7 +1038,7 @@ holidays==0.81
home-assistant-frontend==20250903.5
# homeassistant.components.conversation
home-assistant-intents==2025.9.3
home-assistant-intents==2025.9.24
# homeassistant.components.homematicip_cloud
homematicip==2.3.0
+1 -1
View File
@@ -32,7 +32,7 @@ RUN --mount=from=ghcr.io/astral-sh/uv:0.8.9,source=/uv,target=/bin/uv \
go2rtc-client==0.2.1 \
ha-ffmpeg==3.2.2 \
hassil==3.2.0 \
home-assistant-intents==2025.9.3 \
home-assistant-intents==2025.9.24 \
mutagen==1.47.0 \
pymicro-vad==1.0.1 \
pyspeex-noise==1.0.2
@@ -2542,7 +2542,7 @@ async def test_non_default_response(hass: HomeAssistant, init_components) -> Non
)
)
assert len(calls) == 1
assert result.response.speech["plain"]["speech"] == "Opened"
assert result.response.speech["plain"]["speech"] == "Opening"
async def test_turn_on_area(
@@ -90,7 +90,7 @@ async def test_cover_set_position(
response = result.response
assert response.response_type == intent.IntentResponseType.ACTION_DONE
assert response.speech["plain"]["speech"] == "Opened"
assert response.speech["plain"]["speech"] == "Opening"
assert len(calls) == 1
call = calls[0]
assert call.data == {"entity_id": entity_id}
@@ -104,7 +104,7 @@ async def test_cover_set_position(
response = result.response
assert response.response_type == intent.IntentResponseType.ACTION_DONE
assert response.speech["plain"]["speech"] == "Closed"
assert response.speech["plain"]["speech"] == "Closing"
assert len(calls) == 1
call = calls[0]
assert call.data == {"entity_id": entity_id}
@@ -146,7 +146,7 @@ async def test_cover_device_class(
response = result.response
assert response.response_type == intent.IntentResponseType.ACTION_DONE
assert response.speech["plain"]["speech"] == "Opened the garage"
assert response.speech["plain"]["speech"] == "Opening the garage"
assert len(calls) == 1
call = calls[0]
assert call.data == {"entity_id": entity_id}
@@ -170,7 +170,7 @@ async def test_valve_intents(
response = result.response
assert response.response_type == intent.IntentResponseType.ACTION_DONE
assert response.speech["plain"]["speech"] == "Opened"
assert response.speech["plain"]["speech"] == "Opening"
assert len(calls) == 1
call = calls[0]
assert call.data == {"entity_id": entity_id}
@@ -184,7 +184,7 @@ async def test_valve_intents(
response = result.response
assert response.response_type == intent.IntentResponseType.ACTION_DONE
assert response.speech["plain"]["speech"] == "Closed"
assert response.speech["plain"]["speech"] == "Closing"
assert len(calls) == 1
call = calls[0]
assert call.data == {"entity_id": entity_id}