mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 17:54:32 +03:00
Disabling poor performing test on pypy
This commit is contained in:
parent
86ab020736
commit
edc3215e34
|
@ -2,6 +2,11 @@ from tester import *
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
if hasattr(sys, 'pypy_version_info'):
|
||||||
|
# This takes _forever_ on pypy. Open Bug,
|
||||||
|
# see https://github.com/python-imaging/Pillow/issues/484
|
||||||
|
skip()
|
||||||
|
|
||||||
def test_sanity():
|
def test_sanity():
|
||||||
|
|
||||||
im = lena()
|
im = lena()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user