mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 01:34:24 +03:00
Merge pull request #694 from hugovk/floodfill
Skip test_floodfill_border() on PyPy to avoid fatal error
This commit is contained in:
commit
8beb66443b
|
@ -246,6 +246,11 @@ def test_floodfill():
|
||||||
|
|
||||||
|
|
||||||
def test_floodfill_border():
|
def test_floodfill_border():
|
||||||
|
# floodfill() is experimental
|
||||||
|
if hasattr(sys, 'pypy_version_info'):
|
||||||
|
# Causes fatal RPython error on PyPy
|
||||||
|
skip()
|
||||||
|
|
||||||
# Arrange
|
# Arrange
|
||||||
im = Image.new("RGB", (w, h))
|
im = Image.new("RGB", (w, h))
|
||||||
draw = ImageDraw.Draw(im)
|
draw = ImageDraw.Draw(im)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user