[3.0.x] Skipped GetImageDimensionsTests.test_webp when WEBP is not installed.
Bumped minimum Pillow version to 4.2.0 in test requirements.
Backport of fce389af7c
from master
This commit is contained in:
parent
1734484f12
commit
9deb850e23
|
@ -277,7 +277,7 @@ dependencies:
|
|||
* geoip2_
|
||||
* jinja2_ 2.7+
|
||||
* numpy_
|
||||
* Pillow_
|
||||
* Pillow_ 4.2.0+
|
||||
* PyYAML_
|
||||
* pytz_ (required)
|
||||
* pywatchman_
|
||||
|
|
|
@ -17,9 +17,11 @@ from django.core.files.uploadedfile import (
|
|||
)
|
||||
|
||||
try:
|
||||
from PIL import Image
|
||||
from PIL import Image, features
|
||||
HAS_WEBP = features.check('webp')
|
||||
except ImportError:
|
||||
Image = None
|
||||
HAS_WEBP = False
|
||||
else:
|
||||
from django.core.files import images
|
||||
|
||||
|
@ -343,6 +345,7 @@ class GetImageDimensionsTests(unittest.TestCase):
|
|||
size = images.get_image_dimensions(fh)
|
||||
self.assertEqual(size, (None, None))
|
||||
|
||||
@unittest.skipUnless(HAS_WEBP, 'WEBP not installed')
|
||||
def test_webp(self):
|
||||
img_path = os.path.join(os.path.dirname(__file__), 'test.webp')
|
||||
with open(img_path, 'rb') as fh:
|
||||
|
|
|
@ -5,7 +5,7 @@ docutils
|
|||
geoip2
|
||||
jinja2 >= 2.9.2
|
||||
numpy
|
||||
Pillow != 5.4.0
|
||||
Pillow >=4.2.0, != 5.4.0
|
||||
# pylibmc/libmemcached can't be built on Windows.
|
||||
pylibmc; sys.platform != 'win32'
|
||||
python-memcached >= 1.59
|
||||
|
|
Loading…
Reference in New Issue