From 01949aa39999c44bbe9a8ce6c73404c022d6149c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sat, 18 Apr 2026 01:26:42 +0200 Subject: [PATCH] python3Packages.celery: disable failing tests These fail with Django 6.0 but work with 5.2. --- pkgs/development/python-modules/celery/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix index 2d76c8c237c3..bb9aae785f0e 100644 --- a/pkgs/development/python-modules/celery/default.nix +++ b/pkgs/development/python-modules/celery/default.nix @@ -197,6 +197,10 @@ buildPythonPackage (finalAttrs: { # 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 (lib.versionAtLeast django.version "6.0") [ + "test_is_pickled" + "test_cleanup" + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ # Too many open files on hydra "test_cleanup"