File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 48
48
XVFB_RUN : xvfb-run -a
49
49
- os : ubuntu-20.04
50
50
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'
53
52
XVFB_RUN : xvfb-run -a
54
53
- os : macos-latest
55
54
python-version : 3.8
Original file line number Diff line number Diff line change @@ -512,6 +512,10 @@ def _test_number_of_draws_script():
512
512
# copy_from_bbox only works when rendering to an ImageSurface
513
513
param .marks .append (
514
514
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" ))
515
519
elif backend == "wx" :
516
520
param .marks .append (
517
521
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():
310
310
pass
311
311
available_fonts = sorted (list (set (ttf_fonts )))
312
312
mpl_font_names = sorted (fontManager .get_font_names ())
313
+ assert set (available_fonts ) == set (mpl_font_names )
313
314
assert len (available_fonts ) == len (mpl_font_names )
314
315
assert available_fonts == mpl_font_names
You can’t perform that action at this time.
0 commit comments