"""E2E test: BLE GATT service interaction between Linux and ESP32.""" from __future__ import annotations import pytest from .conftest import requires_esp32 @requires_esp32 class TestBLEGATT: """Create GATT services on ESP32, interact from Linux via mcbluetooth.""" async def test_gatt_read_write(self, esp32_client): """Create GATT service on ESP32, read/write from Linux.""" pytest.skip("Not yet implemented") async def test_gatt_notify(self, esp32_client): """Subscribe to notifications on Linux, verify delivery from ESP32.""" pytest.skip("Not yet implemented")