8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 119ade2 commit 2dae588Copy full SHA for 2dae588
sklearn/utils/tests/test_parallel.py
@@ -14,6 +14,7 @@
14
from sklearn.model_selection import GridSearchCV
15
from sklearn.pipeline import make_pipeline
16
from sklearn.preprocessing import StandardScaler
17
+from sklearn.utils.fixes import _IS_WASM
18
from sklearn.utils.parallel import Parallel, delayed
19
20
@@ -138,6 +139,7 @@ def test_check_warnings_threading():
138
139
assert all(w == filters for w in all_warnings)
140
141
142
+@pytest.mark.xfail(_IS_WASM, reason="Pyodide always use the sequential backend")
143
def test_filter_warning_propagates_no_side_effect_with_loky_backend():
144
with warnings.catch_warnings():
145
warnings.simplefilter("error", category=ConvergenceWarning)
0 commit comments