Disable dependency checks and tests for disabled EE Brightbox integration (#52304)
This commit is contained in:
parent
720a67957b
commit
f1b40b683d
2 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
"""Support for EE Brightbox router."""
|
||||
import logging
|
||||
|
||||
# pylint: disable=import-error
|
||||
from eebrightbox import EEBrightBox, EEBrightBoxException
|
||||
import voluptuous as vol
|
||||
|
||||
|
|
|
@ -9,6 +9,9 @@ from homeassistant.components.device_tracker import DOMAIN
|
|||
from homeassistant.const import CONF_PASSWORD, CONF_PLATFORM
|
||||
from homeassistant.setup import async_setup_component
|
||||
|
||||
# Integration is disabled
|
||||
pytest.skip("Integration has been disabled in the manifest", allow_module_level=True)
|
||||
|
||||
|
||||
def _configure_mock_get_devices(eebrightbox_mock):
|
||||
eebrightbox_instance = eebrightbox_mock.return_value
|
||||
|
|
Loading…
Add table
Reference in a new issue