From 23ef3cebc8c5c9f2d5d0df226ca63e608e454c5c Mon Sep 17 00:00:00 2001 From: natsukium Date: Fri, 21 Jun 2024 11:43:43 +0900 Subject: [PATCH] python312Packages.aioesphomeapi: disable failing tests --- pkgs/development/python-modules/aioesphomeapi/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/aioesphomeapi/default.nix b/pkgs/development/python-modules/aioesphomeapi/default.nix index 8c6a5c70c78d..579142fbeec3 100644 --- a/pkgs/development/python-modules/aioesphomeapi/default.nix +++ b/pkgs/development/python-modules/aioesphomeapi/default.nix @@ -70,6 +70,10 @@ buildPythonPackage rec { disabledTests = [ # https://github.com/esphome/aioesphomeapi/issues/837 "test_reconnect_logic_stop_callback" + # python3.12.4 regression + # https://github.com/esphome/aioesphomeapi/issues/889 + "test_start_connection_cannot_increase_recv_buffer" + "test_start_connection_can_only_increase_buffer_size_to_262144" ]; pythonImportsCheck = [ "aioesphomeapi" ];