python3Packages.celery: disable flaky test under load for all platforms

This commit is contained in:
Sarah Clark
2025-08-26 12:43:14 -07:00
parent 422d7813df
commit d297577b9f
@@ -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" ];