From 71c7efa3877218ea3cd6ed07f95e804dd10d7daf Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Tue, 31 May 2022 00:09:50 +0100 Subject: [PATCH 1/2] python3Packages.celery: skip hydra-failing tests on darwin these tests cause darwin hydra to hit open file limits --- pkgs/development/python-modules/celery/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix index 9ebe30e2875d..50a4e4661caa 100644 --- a/pkgs/development/python-modules/celery/default.nix +++ b/pkgs/development/python-modules/celery/default.nix @@ -69,6 +69,11 @@ buildPythonPackage rec { disabledTests = [ "msgpack" "test_check_privileges_no_fchown" + ] ++ lib.optionals stdenv.isDarwin [ + # too many open files on hydra + "test_cleanup" + "test_with_autoscaler_file_descriptor_safety" + "test_with_file_descriptor_safety" ]; pythonImportsCheck = [ From 67dffc3000fb931058e39a2967a4d66d3cc05af4 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Mon, 30 May 2022 22:42:51 +0100 Subject: [PATCH 2/2] python3Packages.celery: unmark as broken mistakenly marked broken due to a spurious hydra failure --- pkgs/development/python-modules/celery/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix index 50a4e4661caa..1a04fce11dc3 100644 --- a/pkgs/development/python-modules/celery/default.nix +++ b/pkgs/development/python-modules/celery/default.nix @@ -85,7 +85,6 @@ buildPythonPackage rec { }; meta = with lib; { - broken = stdenv.isDarwin; description = "Distributed task queue"; homepage = "https://github.com/celery/celery/"; license = licenses.bsd3;