From 4abd93b661bf789dd8d9aa528c283bb4700b6fc7 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 15 Jun 2025 20:32:36 -0500 Subject: [PATCH] tests, address review comments --- tests/integration/conftest.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 53c29dec14..525e3541b3 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -9,7 +9,6 @@ import logging import os from pathlib import Path import platform -import pty import signal import socket import sys @@ -48,6 +47,9 @@ if platform.system() == "Windows": ) +import pty # not available on Windows + + @pytest.fixture(scope="module", autouse=True) def enable_aioesphomeapi_debug_logging(): """Enable debug logging for aioesphomeapi to help diagnose connection issues."""