Skip test_floodfill_border() on PyPy to avoid fatal error

This commit is contained in:
hugovk 2014-06-06 08:02:18 +03:00
parent 6858aef5b1
commit 995f367755

View File

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