python3Packages.joblib: disable flaky test

This commit is contained in:
Martin Weinelt 2022-03-13 12:34:06 +01:00
parent 0f446086d1
commit b1ce3a653e

View file

@ -29,11 +29,9 @@ buildPythonPackage rec {
disabledTests = [
"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_nested_parallel_warnings" # tests is flaky under load
] ++ lib.optionals stdenv.isDarwin [
"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; {