From edc3215e3454829e2f5741bcec831117a8643ea5 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Wed, 26 Mar 2014 09:12:51 -0700 Subject: [PATCH] Disabling poor performing test on pypy --- Tests/test_image_point.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tests/test_image_point.py b/Tests/test_image_point.py index c70556f6a..34233f80e 100644 --- a/Tests/test_image_point.py +++ b/Tests/test_image_point.py @@ -2,6 +2,11 @@ from tester import * 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(): im = lena()