mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-12 18:26:17 +03:00
Skip test_floodfill_border() on PyPy to avoid fatal error
This commit is contained in:
parent
6858aef5b1
commit
995f367755
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user