Merge pull request #175528 from risicle/ris-celery-darwin-unbroken
python3Packages.celery: unmark as broken
This commit is contained in:
commit
97905532e0
1 changed files with 5 additions and 1 deletions
|
@ -69,6 +69,11 @@ buildPythonPackage rec {
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
"msgpack"
|
"msgpack"
|
||||||
"test_check_privileges_no_fchown"
|
"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 = [
|
pythonImportsCheck = [
|
||||||
|
@ -80,7 +85,6 @@ buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
broken = stdenv.isDarwin;
|
|
||||||
description = "Distributed task queue";
|
description = "Distributed task queue";
|
||||||
homepage = "https://github.com/celery/celery/";
|
homepage = "https://github.com/celery/celery/";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
|
|
Loading…
Reference in a new issue