1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 21:06:19 +00:00

Upgrade dsmr_parser to 0.18, re-enable tests (#31256)

This commit is contained in:
Franck Nijhof
2020-01-28 23:35:28 +01:00
committed by GitHub
parent 747f5fd62c
commit fd4f8d92d2
4 changed files with 5 additions and 13 deletions

View File

@@ -14,16 +14,10 @@ import asynctest
import pytest
from homeassistant.bootstrap import async_setup_component
from homeassistant.components.dsmr.sensor import DerivativeDSMREntity
from tests.common import assert_setup_component
# Imports disabled due to missing PyCRC on PyPi
# Also disabled pylint/flake8 where this is used below
# from homeassistant.components.dsmr.sensor import DerivativeDSMREntity
pytest.skip("Dependency missing on PyPi", allow_module_level=True)
@pytest.fixture
def mock_connection_factory(monkeypatch):
@@ -103,9 +97,7 @@ async def test_derivative():
config = {"platform": "dsmr"}
# Disabled to satisfy pylint & flake8 caused by disabled import
# pylint: disable=undefined-variable
entity = DerivativeDSMREntity("test", "1.0.0", config) # noqa: F821
entity = DerivativeDSMREntity("test", "1.0.0", config)
await entity.async_update()
assert entity.state is None, "initial state not unknown"