Skip to content

Commit

Permalink
leeway for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
rasbt committed Mar 30, 2024
1 parent e834cb4 commit d61928a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mlxtend/classifier/tests/test_stacking_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,11 @@ def test_decision_function():
if Version(sklearn_version) < Version("0.22"):
assert scores_mean == 0.95, scores_mean
else:
assert scores_mean == 0.93, scores_mean
min_allowed_score = 0.92
max_allowed_score = 0.95
assert (
min_allowed_score <= scores_mean <= max_allowed_score
), "Score is out of the allowed range."


def test_drop_col_unsupported():
Expand Down

0 comments on commit d61928a

Please sign in to comment.