@@ -122,6 +122,9 @@ def pytest_collection_modifyitems(session, config, items):
122
122
"matplotlib/tests/" + nodeid : marker
123
123
for marker , nodeids in [
124
124
(knownfail , [
125
+ # Unclear why xpdf doesn't output DocumentMedia: Letter ... for us.
126
+ "test_backend_ps.py::test_savefig_to_stringio[ps with distiller=xpdf-landscape-letter]" ,
127
+ "test_ft2font::test_fallback_missing[" ,
125
128
"test_image.py::test_jpeg_alpha" ,
126
129
"test_image.py::test_figimage[pdf-False]" ,
127
130
"test_image.py::test_figimage[pdf-True]" ,
@@ -171,6 +174,11 @@ def pytest_collection_modifyitems(session, config, items):
171
174
"test_backend_ps.py::test_savefig_to_stringio[eps-portrait]" ,
172
175
"test_backend_ps.py::test_savefig_to_stringio[eps afm-landscape]" ,
173
176
"test_backend_ps.py::test_savefig_to_stringio[eps afm-portrait]" ,
177
+ # We don't need to distill (unless requested) for PS+usetex.
178
+ "test_backend_ps.py::test_savefig_to_stringio[ps with usetex-landscape-figure]" ,
179
+ "test_backend_ps.py::test_savefig_to_stringio[ps with usetex-landscape-letter]" ,
180
+ "test_backend_ps.py::test_savefig_to_stringio[ps with usetex-portrait-figure]" ,
181
+ "test_backend_ps.py::test_savefig_to_stringio[ps with usetex-portrait-letter]" ,
174
182
# cairo doesn't support SOURCE_DATE_EPOCH.
175
183
"test_backend_ps.py::test_source_date_epoch" ,
176
184
# Useful, but the tag structure is too different (e.g. cairo
@@ -194,6 +202,8 @@ def pytest_collection_modifyitems(session, config, items):
194
202
# Different tight bbox.
195
203
"test_bbox_tight.py::test_bbox_inches_tight_suptile_legend[" ,
196
204
"test_bbox_tight.py::test_bbox_inches_tight_suptitle_non_default[" ,
205
+ # Labels placed differently due to different label size.
206
+ "test_contour.py::test_label_contour_start" ,
197
207
# We already raise on invalid savefig kwargs.
198
208
"test_figure.py::test_savefig_warns" ,
199
209
# cairo uses a different representation for ps images (but
0 commit comments