1
0
mirror of https://github.com/esphome/esphome.git synced 2025-11-17 15:26:01 +00:00
Files
esphome/tests/components/socket/conftest.py
J. Nick Koston acd26600dd move to socket
2025-11-02 21:57:57 -06:00

13 lines
214 B
Python

"""Configuration file for socket component tests."""
import pytest
from esphome.core import CORE
@pytest.fixture(autouse=True)
def reset_core():
"""Reset CORE after each test."""
yield
CORE.reset()