@@ -785,9 +785,9 @@ def test_estimator_report_interaction_cache_metrics(regression_multioutput_data)
785
785
if any (item == multioutput for item in cached_key ):
786
786
should_raise = False
787
787
break
788
- assert (
789
- not should_raise
790
- ), f"The value { multioutput } should be stored in one of the cache keys"
788
+ assert not should_raise , (
789
+ f"The value { multioutput } should be stored in one of the cache keys"
790
+ )
791
791
assert result_r2_raw_values .shape == (2 ,)
792
792
793
793
multioutput = "uniform_average"
@@ -797,9 +797,9 @@ def test_estimator_report_interaction_cache_metrics(regression_multioutput_data)
797
797
if any (item == multioutput for item in cached_key ):
798
798
should_raise = False
799
799
break
800
- assert (
801
- not should_raise
802
- ), f"The value { multioutput } should be stored in one of the cache keys"
800
+ assert not should_raise , (
801
+ f"The value { multioutput } should be stored in one of the cache keys"
802
+ )
803
803
assert isinstance (result_r2_uniform_average , float )
804
804
805
805
@@ -823,9 +823,9 @@ def custom_metric(y_true, y_pred, threshold=0.5):
823
823
if any (item == threshold for item in cached_key ):
824
824
should_raise = False
825
825
break
826
- assert (
827
- not should_raise
828
- ), f"The value { threshold } should be stored in one of the cache keys"
826
+ assert not should_raise , (
827
+ f"The value { threshold } should be stored in one of the cache keys"
828
+ )
829
829
830
830
assert isinstance (result , float )
831
831
assert result == pytest .approx (
@@ -843,9 +843,9 @@ def custom_metric(y_true, y_pred, threshold=0.5):
843
843
if any (item == threshold for item in cached_key ):
844
844
should_raise = False
845
845
break
846
- assert (
847
- not should_raise
848
- ), f"The value { threshold } should be stored in one of the cache keys"
846
+ assert not should_raise , (
847
+ f"The value { threshold } should be stored in one of the cache keys"
848
+ )
849
849
850
850
assert isinstance (result , float )
851
851
assert result == pytest .approx (
@@ -887,9 +887,9 @@ def custom_metric(y_true, y_pred, some_weights):
887
887
if any (item == hash_weights for item in cached_key ):
888
888
should_raise = False
889
889
break
890
- assert (
891
- not should_raise
892
- ), "The hash of the weights should be stored in one of the cache keys"
890
+ assert not should_raise , (
891
+ "The hash of the weights should be stored in one of the cache keys"
892
+ )
893
893
894
894
assert isinstance (result , float )
895
895
assert result == pytest .approx (
@@ -1064,7 +1064,7 @@ def test_estimator_report_get_X_y_and_data_source_hash_error():
1064
1064
report = EstimatorReport (estimator )
1065
1065
1066
1066
err_msg = re .escape (
1067
- "Invalid data source: unknown. Possible values are: " " test, train, X_y."
1067
+ "Invalid data source: unknown. Possible values are: test, train, X_y."
1068
1068
)
1069
1069
with pytest .raises (ValueError , match = err_msg ):
1070
1070
report .metrics .log_loss (data_source = "unknown" )
0 commit comments