diff options
| author | Robert Scott <code@humanleg.org.uk> | 2022-05-31 00:09:50 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2022-05-30 23:46:16 +0000 |
| commit | a27f49a4493c551aa7f4a3e31ec0bc3b865c4089 (patch) | |
| tree | 0e974e20c3cd3707941311f9fc7a160d645aef36 | |
| parent | Merge pull request #175533 from NixOS/backport-175161-to-release-22.05 (diff) | |
| download | nixpkgs-a27f49a4493c551aa7f4a3e31ec0bc3b865c4089.tar.gz | |
python3Packages.celery: skip hydra-failing tests on darwin
these tests cause darwin hydra to hit open file limits
(cherry picked from commit 71c7efa3877218ea3cd6ed07f95e804dd10d7daf)
| -rw-r--r-- | pkgs/development/python-modules/celery/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/celery/default.nix b/pkgs/development/python-modules/celery/default.nix index bae04c73f347..95825187b07b 100644 --- a/pkgs/development/python-modules/celery/default.nix +++ b/pkgs/development/python-modules/celery/default.nix @@ -74,6 +74,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 = [ |
