mirror of
https://github.com/esphome/esphome.git
synced 2026-08-22 22:26:21 +00:00
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Co-authored-by: J. Nick Koston <nick@koston.org> Co-authored-by: Bluetooth Devices Bot <bluetooth@koston.org>
11 lines
456 B
Python
11 lines
456 B
Python
from tests.testing_helpers import ComponentManifestOverride
|
|
|
|
|
|
def override_manifest(manifest: ComponentManifestOverride) -> None:
|
|
# The scan list helper is header-only and needs none of the component's real
|
|
# dependencies. Pulling them in breaks the host build: web_server_base
|
|
# includes ESPAsyncWebServer.h and ota.web_server includes md5/md5.h, neither
|
|
# of which exists there.
|
|
manifest.dependencies = []
|
|
manifest.auto_load = []
|