diff --git a/supervisor/discovery/services/home_panel.py b/supervisor/discovery/services/home_panel.py deleted file mode 100644 index 147c2bdb4..000000000 --- a/supervisor/discovery/services/home_panel.py +++ /dev/null @@ -1,11 +0,0 @@ -"""Discovery service for Home Panel.""" -import voluptuous as vol - -from supervisor.validate import network_port - -from ..const import ATTR_HOST, ATTR_PORT - - -SCHEMA = vol.Schema( - {vol.Required(ATTR_HOST): vol.Coerce(str), vol.Required(ATTR_PORT): network_port} -) diff --git a/tests/discovery/test_home_panel.py b/tests/discovery/test_home_panel.py deleted file mode 100644 index cb768751c..000000000 --- a/tests/discovery/test_home_panel.py +++ /dev/null @@ -1,19 +0,0 @@ -"""Test adguard discovery.""" - -import voluptuous as vol -import pytest - -from supervisor.discovery.validate import valid_discovery_config - - -def test_good_config(): - """Test good deconz config.""" - - valid_discovery_config("home_panel", {"host": "test", "port": 3812}) - - -def test_bad_config(): - """Test good adguard config.""" - - with pytest.raises(vol.Invalid): - valid_discovery_config("home_panel", {"host": "test"})