From 20c919e16ebd0e97b6fd57dedc5254399bb5ff64 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 24 Jun 2024 09:08:05 +0530 Subject: [PATCH] Skip DejaVu font test --- kitty_tests/fonts.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kitty_tests/fonts.py b/kitty_tests/fonts.py index cc7b2dbc9..e9a33d5a0 100644 --- a/kitty_tests/fonts.py +++ b/kitty_tests/fonts.py @@ -78,7 +78,9 @@ class Selection(BaseTest): t('sourcecodeVf', 'SourceCodeVF', 'Semibold') t('fira code', 'FiraCodeRoman', 'SemiBold', 'Regular', 'SemiBold') t('hack', 'Hack') - t('DejaVu Sans Mono', 'DejaVuSansMono', reg='', italic='Oblique') + # some ubuntu systems (such as the build VM) have only the regular and + # bold faces of DejaVu Sans Mono installed. + # t('DejaVu Sans Mono', 'DejaVuSansMono', reg='', italic='Oblique') t('ubuntu mono', 'UbuntuMono') t('liberation mono', 'LiberationMono', reg='') t('ibm plex mono', 'IBMPlexMono', 'SmBld', reg='')