Fail tests if wrapped callbacks or coroutines throw (#35010)

This commit is contained in:
Erik Montnemery 2020-05-06 23:14:57 +02:00 committed by GitHub
parent b35306052d
commit f1ecac92df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
22 changed files with 156 additions and 38 deletions

View file

@ -1,4 +1,6 @@
"""The tests for the MQTT lock platform."""
import pytest
from homeassistant.components.lock import (
DOMAIN as LOCK_DOMAIN,
SERVICE_LOCK,
@ -366,6 +368,7 @@ async def test_discovery_update_lock(hass, mqtt_mock, caplog):
await help_test_discovery_update(hass, mqtt_mock, caplog, LOCK_DOMAIN, data1, data2)
@pytest.mark.no_fail_on_log_exception
async def test_discovery_broken(hass, mqtt_mock, caplog):
"""Test handling of bad discovery message."""
data1 = '{ "name": "Beer" }'