Skip to content

Commit

Permalink
Expand tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Scienfitz committed Jan 20, 2025
1 parent 8a27738 commit 0baf9b7
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions tests/insights/test_shap.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,18 @@ def batch_size():
@pytest.fixture(
params=[
["Conti_finite1", "Conti_finite2"],
["Categorical_1", "SomeSetting", "Num_disc_1", "Conti_finite1"],
["Num_disc_1", "Fraction_1"],
["Num_disc_1", "Conti_finite1"],
["Num_disc_1", "Categorical_1"],
["Conti_finite1", "Categorical_1"],
],
ids=[
"params_conti",
"params_disc_num",
"params_hybrid_num",
"params_disc_cat",
"params_hybrid_cat",
],
ids=["conti_params", "hybrid_params"],
)
def parameter_names(request):
return request.param
Expand Down

0 comments on commit 0baf9b7

Please sign in to comment.