mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 09:03:07 +02:00
Add a build test for PIL JPEG support
This commit is contained in:
parent
9607e1dc45
commit
3a6ad1e03a
1 changed files with 2 additions and 0 deletions
|
|
@ -247,6 +247,8 @@ def test_imaging(self):
|
|||
_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…
Reference in a new issue