summaryrefslogtreecommitdiff
path: root/dev-python/joblib/files/joblib-1.3.2-py3.12-no-depr-warn.patch
blob: 4d5a28815e4af17e8acd3cdfafadd331591f872d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/joblib/test/test_parallel.py b/joblib/test/test_parallel.py
index 906d436..c4a727c 100644
--- a/joblib/test/test_parallel.py
+++ b/joblib/test/test_parallel.py
@@ -189,6 +189,10 @@ def test_main_thread_renamed_no_warning(backend, monkeypatch):
     # warninfo catches Warnings from worker timeouts. We remove it if it exists
     warninfo = [w for w in warninfo if "worker timeout" not in str(w.message)]

+    # We don't want to count DeprecationWarnings
+    warninfo = [w for w in warninfo
+                if not isinstance(w.message, DeprecationWarning)]
+
     # The multiprocessing backend will raise a warning when detecting that is
     # started from the non-main thread. Let's check that there is no false
     # positive because of the name change.