mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 02:34:06 -04:00
Add a build test for PIL JPEG support
This commit is contained in:
parent
9607e1dc45
commit
3a6ad1e03a
@ -247,6 +247,8 @@ class BuildTest(unittest.TestCase):
|
||||
_imaging, _imagingmath, _imagingft
|
||||
i = Image.open(I('lt.png', allow_user_override=False))
|
||||
self.assertGreaterEqual(i.size, (20, 20))
|
||||
i = Image.open(P('catalog/DefaultCover.jpg', allow_user_override=False))
|
||||
self.assertGreaterEqual(i.size, (20, 20))
|
||||
|
||||
@unittest.skipUnless(iswindows and not is_ci, 'File dialog helper only used on windows (non-continuous-itegration)')
|
||||
def test_file_dialog_helper(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user