File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 4848 XVFB_RUN : xvfb-run -a
4949 - os : ubuntu-20.04
5050 python-version : ' 3.10'
51- # Re-add this when extra dependencies have wheels.
52- # extra-requirements: '-r requirements/testing/extra.txt'
51+ extra-requirements : ' -r requirements/testing/extra.txt'
5352 XVFB_RUN : xvfb-run -a
5453 - os : macos-latest
5554 python-version : 3.8
Original file line number Diff line number Diff line change @@ -512,6 +512,10 @@ def _test_number_of_draws_script():
512512 # copy_from_bbox only works when rendering to an ImageSurface
513513 param .marks .append (
514514 pytest .mark .skip ("gtk3cairo does not support blitting" ))
515+ elif backend == "gtk4cairo" :
516+ # copy_from_bbox only works when rendering to an ImageSurface
517+ param .marks .append (
518+ pytest .mark .skip ("gtk4cairo does not support blitting" ))
515519 elif backend == "wx" :
516520 param .marks .append (
517521 pytest .mark .skip ("wx does not support blitting" ))
Original file line number Diff line number Diff line change @@ -310,5 +310,6 @@ def test_get_font_names():
310310 pass
311311 available_fonts = sorted (list (set (ttf_fonts )))
312312 mpl_font_names = sorted (fontManager .get_font_names ())
313+ assert set (available_fonts ) == set (mpl_font_names )
313314 assert len (available_fonts ) == len (mpl_font_names )
314315 assert available_fonts == mpl_font_names
You can’t perform that action at this time.
0 commit comments