Skip to content

Commit

Permalink
Merge pull request #954 from wiredfool/webp-test-comments
Browse files Browse the repository at this point in the history
Webp Metadata Skip Test comments
  • Loading branch information
hugovk committed Oct 13, 2014
2 parents e165d55 + 991c847 commit a013bc8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Tests/test_file_webp_metadata.py
Expand Up @@ -8,10 +8,13 @@ class TestFileWebpMetadata(PillowTestCase):
def setUp(self):
try:
from PIL import _webp
if not _webp.HAVE_WEBPMUX:
self.skipTest('webpmux support not installed')
except:
self.skipTest('WebP support not installed')
return

if not _webp.HAVE_WEBPMUX:
self.skipTest('WebPMux support not installed')


def test_read_exif_metadata(self):

Expand Down

0 comments on commit a013bc8

Please sign in to comment.