1
0
mirror of https://github.com/esphome/esphome.git synced 2026-02-08 00:31:58 +00:00

[core][esp32_ble][socket] Add wake_loop_threadsafe() helper for background thread wakeups (#11681)

This commit is contained in:
J. Nick Koston
2025-11-03 13:13:37 -06:00
committed by GitHub
parent 06d0787ee0
commit 3f12630a6b
9 changed files with 217 additions and 148 deletions

View File

@@ -0,0 +1,12 @@
"""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()