Disabling poor performing test on pypy

This commit is contained in:
wiredfool 2014-03-26 09:12:51 -07:00
parent 86ab020736
commit edc3215e34

View File

@ -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()