From 3a5466554a4887aa01a84287e66d647e845da74b Mon Sep 17 00:00:00 2001 From: Aleksandr Mezin Date: Wed, 26 Nov 2025 21:15:57 +0200 Subject: [PATCH] tests: skip TestWaylandNoMonitors on Fedora 41 --- tests/test_wm.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_wm.py b/tests/test_wm.py index 830902881..783118f52 100644 --- a/tests/test_wm.py +++ b/tests/test_wm.py @@ -931,8 +931,9 @@ def initial_monitor_layout(self): return [] @pytest.fixture(scope='class') - def shell_init(self, disable_extension_updates): - pass + def shell_init(self, disable_extension_updates, shell_dbus_interface): + if shell_dbus_interface.ShellVersion == (47, 10): + pytest.skip('Sometimes crashes GNOME Shell on Fedora 41') def test_smoke(self, extension_init): pass