python3Packages.celery: disable flaky test under load for all platforms (#437243)

This commit is contained in:
Gaétan Lepage
2025-08-27 22:52:37 +02:00
committed by GitHub
@@ -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" ];