From b14e3daea159b6636013ec64edf1f92c0b8d6a13 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Fri, 22 Aug 2014 20:49:29 -0700 Subject: [PATCH] Tests need to pass without imagemagick around --- Tests/test_file_palm.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Tests/test_file_palm.py b/Tests/test_file_palm.py index 388df0237..9598b8cbc 100644 --- a/Tests/test_file_palm.py +++ b/Tests/test_file_palm.py @@ -26,8 +26,11 @@ class TestFilePalm(PillowTestCase): outfile = self.tempfile("temp.palm") im.save(outfile) - converted = self.open_withImagemagick(outfile) - self.assert_image_equal(converted, im) + try: + converted = self.open_withImagemagick(outfile) + self.assert_image_equal(converted, im) + except IOError: + pass def test_monochrome(self):