mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
1e227e8051
* schema dump idea accept boolean or anything default accept null also for full dicts added some common validators more simple validators support multi_conf better handle automations updates updates handle lists removed not needed class move to own folder generalized for automations lists, etc updates updates clean up clean up fix automations made comment optional basic docs support added more docs fixes docs handling updates updates fix components parent updates updates updates Fix inkplate 6 registration updates Disable logging for vscode add on better handle buses keep extended order as in CONFIGs updates updates updates disable comments moved to scripts/build_jsonschema added configurable decorators path handling fix handle list_schema fixes and cleanup add jschema_extractor to maybe updates lint no schema in git add generated loggers list * lint
23 lines
548 B
Python
23 lines
548 B
Python
"""Fixtures for component tests."""
|
|
|
|
import pytest
|
|
|
|
from esphome.core import CORE
|
|
from esphome.config import read_config
|
|
from esphome.__main__ import generate_cpp_contents
|
|
|
|
|
|
@pytest.fixture
|
|
def generate_main():
|
|
"""Generates the C++ main.cpp file and returns it in string form."""
|
|
|
|
def generator(path: str) -> str:
|
|
CORE.config_path = path
|
|
CORE.config = read_config({})
|
|
generate_cpp_contents(CORE.config)
|
|
print(CORE.cpp_main_section)
|
|
return CORE.cpp_main_section
|
|
|
|
yield generator
|
|
|
|
CORE.reset()
|