@@ -1071,6 +1071,10 @@ def test_boxplot_series_positions(self, hist_df):
10711071 assert len (ax .lines ) == 7 * len (numeric_cols )
10721072
10731073 @pytest .mark .filterwarnings ("ignore:set_ticklabels:UserWarning" )
1074+ @pytest .mark .xfail (
1075+ Version (mpl .__version__ ) >= Version ("3.10" ),
1076+ reason = "Fails starting with matplotlib 3.10" ,
1077+ )
10741078 def test_boxplot_vertical (self , hist_df ):
10751079 df = hist_df
10761080 numeric_cols = df ._get_numeric_data ().columns
@@ -1088,7 +1092,10 @@ def test_boxplot_vertical(self, hist_df):
10881092 assert len (ax .lines ) == 7 * len (numeric_cols )
10891093
10901094 @pytest .mark .filterwarnings ("ignore::UserWarning" )
1091- @pytest .mark .xfail (Version (mpl .__version__ ) > Version ("3.10" ), reason = "TODO" )
1095+ @pytest .mark .xfail (
1096+ Version (mpl .__version__ ) >= Version ("3.10" ),
1097+ reason = "Fails starting with matplotlib version 3.10" ,
1098+ )
10921099 def test_boxplot_vertical_subplots (self , hist_df ):
10931100 df = hist_df
10941101 numeric_cols = df ._get_numeric_data ().columns
@@ -1108,6 +1115,10 @@ def test_boxplot_vertical_subplots(self, hist_df):
11081115 assert len (ax .lines ) == 7
11091116
11101117 @pytest .mark .filterwarnings ("ignore:set_ticklabels:UserWarning" )
1118+ @pytest .mark .xfail (
1119+ Version (mpl .__version__ ) >= Version ("3.10" ),
1120+ reason = "Fails starting with matplotlib 3.10" ,
1121+ )
11111122 def test_boxplot_vertical_positions (self , hist_df ):
11121123 df = hist_df
11131124 numeric_cols = df ._get_numeric_data ().columns
0 commit comments