1
0
mirror of https://github.com/django/django.git synced 2025-07-19 00:59:17 +00:00

[3.1.x] Skipped GetImageDimensionsTests.test_webp when WEBP is not installed.

Backport of fce389af7cf95151118c9fc7cafd777a31f94946 from master
This commit is contained in:
Mariusz Felisiak 2020-10-06 11:25:04 +02:00
parent 1c7799dbf7
commit 322f0f7012

View File

@ -19,9 +19,11 @@ from django.core.files.uploadedfile import (
from django.test import override_settings from django.test import override_settings
try: try:
from PIL import Image from PIL import Image, features
HAS_WEBP = features.check('webp')
except ImportError: except ImportError:
Image = None Image = None
HAS_WEBP = False
else: else:
from django.core.files import images from django.core.files import images
@ -351,6 +353,7 @@ class GetImageDimensionsTests(unittest.TestCase):
size = images.get_image_dimensions(fh) size = images.get_image_dimensions(fh)
self.assertEqual(size, (None, None)) self.assertEqual(size, (None, None))
@unittest.skipUnless(HAS_WEBP, 'WEBP not installed')
def test_webp(self): def test_webp(self):
img_path = os.path.join(os.path.dirname(__file__), 'test.webp') img_path = os.path.join(os.path.dirname(__file__), 'test.webp')
with open(img_path, 'rb') as fh: with open(img_path, 'rb') as fh: