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)