From b2f3356997e1dd97ba87f11be516002e1aa22e57 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 26 Aug 2024 12:20:46 +0530 Subject: [PATCH] Exclude speechd from import tests on non-Linux --- src/calibre/utils/run_tests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/calibre/utils/run_tests.py b/src/calibre/utils/run_tests.py index cb0337d0fe0d..36960d34044f 100644 --- a/src/calibre/utils/run_tests.py +++ b/src/calibre/utils/run_tests.py @@ -186,9 +186,9 @@ def test_import_of_all_python_modules(self): exclude_modules.add('calibre.utils.open_with.osx') if not islinux: exclude_modules |= { - 'calibre.linux', - 'calibre.utils.linux_trash', 'calibre.utils.open_with.linux', - 'calibre.gui2.linux_file_dialogs', + 'calibre.linux', 'calibre.gui2.tts2.speechd', + 'calibre.utils.linux_trash', 'calibre.utils.open_with.linux', + 'calibre.gui2.linux_file_dialogs', } if not isbsd: exclude_modules.add('calibre.devices.usbms.hal')