From c93ef4ecd9c7ed3911321f9d3e19c42216a68370 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Wed, 16 Jul 2025 08:41:17 +0200 Subject: [PATCH] ci: use fixed telnetlib since python 3.13 removed this from stdlib --- conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conftest.py b/conftest.py index 5e370ef09c..fef9ddf671 100644 --- a/conftest.py +++ b/conftest.py @@ -28,7 +28,6 @@ import time import typing as t import zipfile from copy import deepcopy -from telnetlib import Telnet from urllib.parse import quote import common_test_methods # noqa: F401 @@ -62,6 +61,7 @@ from pytest_embedded.utils import to_bytes from pytest_embedded.utils import to_str from pytest_embedded_idf.dut import IdfDut from pytest_embedded_idf.unity_tester import CaseTester +from pytest_embedded_jtag._telnetlib.telnetlib import Telnet # python 3.13 removed telnetlib, use this instead ############