Skip to content

Commit 4986838

Browse files
authored
CI Adjust atol for conda-forge to pass (scikit-learn#26628)
1 parent 3e7d2c8 commit 4986838

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sklearn/linear_model/tests/test_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ def test_linear_regression_sample_weight_consistency(
874874
# ::test_linear_regression_sample_weight_consistency
875875
pass
876876
else:
877-
assert_allclose(reg.coef_, coef_0, rtol=1e-6)
877+
assert_allclose(reg.coef_, coef_0, rtol=1e-5)
878878
if fit_intercept:
879879
assert_allclose(reg.intercept_, intercept_0)
880880

0 commit comments

Comments
 (0)