diff --git a/tests/valuation/test_interface.py b/tests/valuation/test_interface.py index e43a4c162..14a78075a 100644 --- a/tests/valuation/test_interface.py +++ b/tests/valuation/test_interface.py @@ -68,7 +68,20 @@ def test_data_shapley_valuation(train_data, utility, n_jobs): assert len(got) == len(train_data) -@pytest.mark.parametrize("n_jobs", [1, 2]) +@pytest.mark.parametrize( + "n_jobs", + [ + 1, + pytest.param( + 2, + marks=[ + pytest.mark.xfail( + reason="Bad interaction between parallelization and batching" + ) + ], + ), + ], +) def test_data_beta_shapley_valuation(train_data, utility, n_jobs): valuation = BetaShapleyValuation( utility,