Codebase list virt-viewer / 64a2ecd
tests: Disable smartcard hotkey test to work around CI issue The next commit fixes a bug which was causing gtk_application_get_accels_for_action() in virt_viewer_update_smartcard_accels() to incorrectly return nothing. Now that it is correctly working, gtk_application_get_accels_for_action() is internally trying to call gdk_keymap_get_for_display(), which fails if there is no available X11 display. This causes the CI pipeline to fail since the CI pipeline doesn't have an X11 display. To work around this, disable the smartcard hotkey test. Signed-off-by: Paul Donohue <git@PaulSD.com> Paul Donohue authored 2 years ago Daniel P. Berrangé committed 2 years ago
1 changed file(s) with 6 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
5959 "toggle-fullscreen=shift+f11",
6060 "release-cursor=shift+f12,secure-attention=ctrl+shift+b",
6161 "zoom-in=shift+f2,zoom-out=shift+f3,zoom-reset=shift+f4",
62 "smartcard-insert=shift+I,smartcard-remove=shift+R",
62 // Setting the smartcard hotkeys causes
63 // gtk_application_get_accels_for_action() in
64 // virt_viewer_update_smartcard_accels() to call
65 // gdk_keymap_get_for_display(), which fails if called within
66 // the CI pipeline because it has no X11 display.
67 //"smartcard-insert=shift+I,smartcard-remove=shift+R",
6368 };
6469
6570 guint i;