Bump gcal_sync to 6.1.3 (#120278)
This commit is contained in:
parent
d7a59748cf
commit
2d5961fa4f
4 changed files with 15 additions and 3 deletions
|
@ -7,5 +7,5 @@
|
||||||
"documentation": "https://www.home-assistant.io/integrations/calendar.google",
|
"documentation": "https://www.home-assistant.io/integrations/calendar.google",
|
||||||
"iot_class": "cloud_polling",
|
"iot_class": "cloud_polling",
|
||||||
"loggers": ["googleapiclient"],
|
"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"]
|
||||||
}
|
}
|
||||||
|
|
|
@ -924,7 +924,7 @@ gardena-bluetooth==1.4.2
|
||||||
gassist-text==0.0.11
|
gassist-text==0.0.11
|
||||||
|
|
||||||
# homeassistant.components.google
|
# homeassistant.components.google
|
||||||
gcal-sync==6.0.4
|
gcal-sync==6.1.3
|
||||||
|
|
||||||
# homeassistant.components.geniushub
|
# homeassistant.components.geniushub
|
||||||
geniushub-client==0.7.1
|
geniushub-client==0.7.1
|
||||||
|
|
|
@ -762,7 +762,7 @@ gardena-bluetooth==1.4.2
|
||||||
gassist-text==0.0.11
|
gassist-text==0.0.11
|
||||||
|
|
||||||
# homeassistant.components.google
|
# homeassistant.components.google
|
||||||
gcal-sync==6.0.4
|
gcal-sync==6.1.3
|
||||||
|
|
||||||
# homeassistant.components.geocaching
|
# homeassistant.components.geocaching
|
||||||
geocachingapi==0.2.1
|
geocachingapi==0.2.1
|
||||||
|
|
|
@ -385,6 +385,9 @@ async def test_update_error(
|
||||||
with patch("homeassistant.util.utcnow", return_value=now):
|
with patch("homeassistant.util.utcnow", return_value=now):
|
||||||
async_fire_time_changed(hass, now)
|
async_fire_time_changed(hass, now)
|
||||||
await hass.async_block_till_done()
|
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
|
# Entity is marked uanvailable due to API failure
|
||||||
state = hass.states.get(TEST_ENTITY)
|
state = hass.states.get(TEST_ENTITY)
|
||||||
|
@ -414,6 +417,9 @@ async def test_update_error(
|
||||||
with patch("homeassistant.util.utcnow", return_value=now):
|
with patch("homeassistant.util.utcnow", return_value=now):
|
||||||
async_fire_time_changed(hass, now)
|
async_fire_time_changed(hass, now)
|
||||||
await hass.async_block_till_done()
|
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 updated with new API response
|
||||||
state = hass.states.get(TEST_ENTITY)
|
state = hass.states.get(TEST_ENTITY)
|
||||||
|
@ -606,6 +612,9 @@ async def test_future_event_update_behavior(
|
||||||
freezer.move_to(now)
|
freezer.move_to(now)
|
||||||
async_fire_time_changed(hass, now)
|
async_fire_time_changed(hass, now)
|
||||||
await hass.async_block_till_done()
|
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
|
# Event has started
|
||||||
state = hass.states.get(TEST_ENTITY)
|
state = hass.states.get(TEST_ENTITY)
|
||||||
|
@ -643,6 +652,9 @@ async def test_future_event_offset_update_behavior(
|
||||||
freezer.move_to(now)
|
freezer.move_to(now)
|
||||||
async_fire_time_changed(hass, now)
|
async_fire_time_changed(hass, now)
|
||||||
await hass.async_block_till_done()
|
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
|
# Event has not started, but the offset was reached
|
||||||
state = hass.states.get(TEST_ENTITY)
|
state = hass.states.get(TEST_ENTITY)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue