From f678c3cbbddc3696c4a2342d213be527ac86baa1 Mon Sep 17 00:00:00 2001 From: Sam Pointon Date: Sun, 12 Apr 2026 15:13:41 +0100 Subject: [PATCH] python314Packages.zeroconf: disable flaky test test_run_coro_with_timeout has been flaky in CI, failing and then succeeding again with nothing obviously breaking or fixing it. It seems more likely that this is a confused test than reflecting a deep problem with zeroconf or asyncio. Upstream issue: https://github.com/python-zeroconf/python-zeroconf/issues/1663 --- pkgs/development/python-modules/zeroconf/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/zeroconf/default.nix b/pkgs/development/python-modules/zeroconf/default.nix index a5ca2aba1590..918408066c91 100644 --- a/pkgs/development/python-modules/zeroconf/default.nix +++ b/pkgs/development/python-modules/zeroconf/default.nix @@ -48,6 +48,9 @@ buildPythonPackage rec { "test_launch_and_close" "test_launch_and_close_context_manager" "test_launch_and_close_v4_v6" + + # Flaky (see e.g. https://hydra.nixos.org/build/326378736); https://github.com/python-zeroconf/python-zeroconf/issues/1663 + "test_run_coro_with_timeout" ]; __darwinAllowLocalNetworking = true;