Bump gcal_sync to 6.1.3 (#120278)

This commit is contained in:
Allen Porter 2024-06-29 08:45:51 -07:00 committed by Franck Nijhof
parent d7a59748cf
commit 2d5961fa4f
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
4 changed files with 15 additions and 3 deletions

View File

@ -7,5 +7,5 @@
"documentation": "https://www.home-assistant.io/integrations/calendar.google",
"iot_class": "cloud_polling",
"loggers": ["googleapiclient"],
"requirements": ["gcal-sync==6.0.4", "oauth2client==4.1.3", "ical==8.0.1"]
"requirements": ["gcal-sync==6.1.3", "oauth2client==4.1.3", "ical==8.0.1"]
}

View File

@ -924,7 +924,7 @@ gardena-bluetooth==1.4.2
gassist-text==0.0.11
# homeassistant.components.google
gcal-sync==6.0.4
gcal-sync==6.1.3
# homeassistant.components.geniushub
geniushub-client==0.7.1

View File

@ -762,7 +762,7 @@ gardena-bluetooth==1.4.2
gassist-text==0.0.11
# homeassistant.components.google
gcal-sync==6.0.4
gcal-sync==6.1.3
# homeassistant.components.geocaching
geocachingapi==0.2.1

View File

@ -385,6 +385,9 @@ async def test_update_error(
with patch("homeassistant.util.utcnow", return_value=now):
async_fire_time_changed(hass, now)
await hass.async_block_till_done()
# Ensure coordinator update completes
await hass.async_block_till_done()
await hass.async_block_till_done()
# Entity is marked uanvailable due to API failure
state = hass.states.get(TEST_ENTITY)
@ -414,6 +417,9 @@ async def test_update_error(
with patch("homeassistant.util.utcnow", return_value=now):
async_fire_time_changed(hass, now)
await hass.async_block_till_done()
# Ensure coordinator update completes
await hass.async_block_till_done()
await hass.async_block_till_done()
# State updated with new API response
state = hass.states.get(TEST_ENTITY)
@ -606,6 +612,9 @@ async def test_future_event_update_behavior(
freezer.move_to(now)
async_fire_time_changed(hass, now)
await hass.async_block_till_done()
# Ensure coordinator update completes
await hass.async_block_till_done()
await hass.async_block_till_done()
# Event has started
state = hass.states.get(TEST_ENTITY)
@ -643,6 +652,9 @@ async def test_future_event_offset_update_behavior(
freezer.move_to(now)
async_fire_time_changed(hass, now)
await hass.async_block_till_done()
# Ensure coordinator update completes
await hass.async_block_till_done()
await hass.async_block_till_done()
# Event has not started, but the offset was reached
state = hass.states.get(TEST_ENTITY)