mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Exclude some linux specific modules from import tests on other platforms
This commit is contained in:
parent
f0ab48d1a9
commit
4fa69111ec
@ -83,7 +83,11 @@ class BuildTest(unittest.TestCase):
|
||||
if not isosx:
|
||||
exclude_modules.add('calibre.utils.open_with.osx')
|
||||
if not islinux:
|
||||
exclude_modules |= {'calibre.utils.dbus_service', 'calibre.linux'}
|
||||
exclude_modules |= {
|
||||
'calibre.utils.dbus_service', 'calibre.linux',
|
||||
'calibre.utils.linux_trash', 'calibre.utils.open_with.linux',
|
||||
'calibre.gui2.linux_file_dialogs'
|
||||
}
|
||||
exclude_packages.add('calibre.gui2.dbus_export')
|
||||
base = os.path.dirname(__file__)
|
||||
import_base = os.path.dirname(base)
|
||||
|
Loading…
x
Reference in New Issue
Block a user