mirror of
https://git.deluge-torrent.org/deluge
synced 2025-07-31 21:48:38 +00:00
Skip Failing Tests On Windows
This commit is contained in:
parent
333c81c1d7
commit
4fd51a4ef9
14 changed files with 91 additions and 13 deletions
|
@ -57,9 +57,13 @@ class Mock(object):
|
|||
return Mock()
|
||||
|
||||
|
||||
MOCK_MODULES = ['deluge.ui.gtkui.gtkui', 'deluge._libtorrent',
|
||||
'libtorrent', 'psyco',
|
||||
'pygtk', 'gtk', 'gobject', 'gtk.gdk', 'pango', 'cairo', 'pangocairo']
|
||||
MOCK_MODULES = [
|
||||
'deluge.ui.gtkui.gtkui', 'deluge._libtorrent',
|
||||
'libtorrent', 'psyco',
|
||||
'pygtk', 'gtk', 'gobject', 'gtk.gdk', 'pango', 'cairo', 'pangocairo',
|
||||
'curses', 'win32api', 'win32file', 'win32process', 'win32pipe',
|
||||
'pywintypes', 'win32con', 'win32event',
|
||||
]
|
||||
|
||||
for mod_name in MOCK_MODULES:
|
||||
sys.modules[mod_name] = Mock()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue