python3Packages.joblib: disable flaky test
This commit is contained in:
parent
0f446086d1
commit
b1ce3a653e
1 changed files with 1 additions and 3 deletions
|
@ -29,11 +29,9 @@ buildPythonPackage rec {
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
"test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
|
"test_disk_used" # test_disk_used is broken: https://github.com/joblib/joblib/issues/57
|
||||||
"test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests
|
"test_parallel_call_cached_function_defined_in_jupyter" # jupyter not available during tests
|
||||||
|
"test_nested_parallel_warnings" # tests is flaky under load
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
"test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.
|
"test_dispatch_multiprocessing" # test_dispatch_multiprocessing is broken only on Darwin.
|
||||||
] ++ lib.optionals (pythonAtLeast "3.10") [
|
|
||||||
# expected warning doesn't trigger in 3.10
|
|
||||||
"test_nested_parallel_warnings"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue