@@ -1070,6 +1070,7 @@ def test_boxplot_series_positions(self, hist_df):
10701070 tm .assert_numpy_array_equal (ax .xaxis .get_ticklocs (), positions )
10711071 assert len (ax .lines ) == 7 * len (numeric_cols )
10721072
1073+ @pytest .mark .filterwarnings ("ignore:set_ticklabels:UserWarning" )
10731074 def test_boxplot_vertical (self , hist_df ):
10741075 df = hist_df
10751076 numeric_cols = df ._get_numeric_data ().columns
@@ -1086,8 +1087,8 @@ def test_boxplot_vertical(self, hist_df):
10861087 _check_text_labels (ax .get_yticklabels (), labels )
10871088 assert len (ax .lines ) == 7 * len (numeric_cols )
10881089
1089- @pytest .mark .filterwarnings ("ignore:Attempt :UserWarning" )
1090- @pytest .mark .filterwarnings ( "ignore:set_ticklabels:UserWarning " )
1090+ @pytest .mark .filterwarnings ("ignore::UserWarning" )
1091+ @pytest .mark .xfail ( Version ( mpl . __version__ ) > Version ( "3.10" ), reason = "TODO " )
10911092 def test_boxplot_vertical_subplots (self , hist_df ):
10921093 df = hist_df
10931094 numeric_cols = df ._get_numeric_data ().columns
@@ -1106,6 +1107,7 @@ def test_boxplot_vertical_subplots(self, hist_df):
11061107 _check_text_labels (ax .get_yticklabels (), [label ])
11071108 assert len (ax .lines ) == 7
11081109
1110+ @pytest .mark .filterwarnings ("ignore:set_ticklabels:UserWarning" )
11091111 def test_boxplot_vertical_positions (self , hist_df ):
11101112 df = hist_df
11111113 numeric_cols = df ._get_numeric_data ().columns
0 commit comments