From 995f3677559f6387ed43a3b224856de3a732fe14 Mon Sep 17 00:00:00 2001 From: hugovk Date: Fri, 6 Jun 2014 08:02:18 +0300 Subject: [PATCH] Skip test_floodfill_border() on PyPy to avoid fatal error --- Tests/test_imagedraw.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tests/test_imagedraw.py b/Tests/test_imagedraw.py index c47638a05..7b682020e 100644 --- a/Tests/test_imagedraw.py +++ b/Tests/test_imagedraw.py @@ -246,6 +246,11 @@ def test_floodfill(): def test_floodfill_border(): + # floodfill() is experimental + if hasattr(sys, 'pypy_version_info'): + # Causes fatal RPython error on PyPy + skip() + # Arrange im = Image.new("RGB", (w, h)) draw = ImageDraw.Draw(im)