From d297577b9f47b4e9cea783d48e720b440477e874 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Tue, 26 Aug 2025 12:43:14 -0700 Subject: [PATCH] python3Packages.celery: disable flaky test under load for all platforms --- pkgs/development/python-modules/celery/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix index 4629fa12d8c5..99ff9c25fb95 100644 --- a/pkgs/development/python-modules/celery/default.nix +++ b/pkgs/development/python-modules/celery/default.nix @@ -106,15 +106,15 @@ buildPythonPackage rec { "test_itercapture_limit" "test_stamping_headers_in_options" "test_stamping_with_replace" + + # Flaky: Unclosed temporary file handle under heavy load (as in nixpkgs-review) + "test_check_privileges_without_c_force_root_and_no_group_entry" ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Too many open files on hydra "test_cleanup" "test_with_autoscaler_file_descriptor_safety" "test_with_file_descriptor_safety" - - # Flaky: Unclosed temporary file handle under heavy load (as in nixpkgs-review) - "test_check_privileges_without_c_force_root_and_no_group_entry" ]; pythonImportsCheck = [ "celery" ];