mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 02:36:17 +03:00
Moved test to test_image_copy
This commit is contained in:
parent
b10379b3c1
commit
b62287da3a
|
@ -4,7 +4,7 @@ import pytest
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
from .helper import hopper
|
from .helper import hopper, skip_unless_feature
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("mode", ("1", "P", "L", "RGB", "I", "F"))
|
@pytest.mark.parametrize("mode", ("1", "P", "L", "RGB", "I", "F"))
|
||||||
|
@ -42,3 +42,10 @@ def test_copy_zero():
|
||||||
out = im.copy()
|
out = im.copy()
|
||||||
assert out.mode == im.mode
|
assert out.mode == im.mode
|
||||||
assert out.size == im.size
|
assert out.size == im.size
|
||||||
|
|
||||||
|
|
||||||
|
@skip_unless_feature("libtiff")
|
||||||
|
def test_deepcopy():
|
||||||
|
with Image.open("Tests/images/g4_orientation_5.tif") as im:
|
||||||
|
out = copy.deepcopy(im)
|
||||||
|
assert out.size == (590, 88)
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import warnings
|
import warnings
|
||||||
from copy import deepcopy
|
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
|
@ -227,14 +226,6 @@ def test_load_first():
|
||||||
assert a.shape == (88, 590)
|
assert a.shape == (88, 590)
|
||||||
|
|
||||||
|
|
||||||
@skip_unless_feature("libtiff")
|
|
||||||
def test_load_first_deepcopy():
|
|
||||||
with Image.open("Tests/images/g4_orientation_5.tif") as im:
|
|
||||||
im_deepcopy = deepcopy(im)
|
|
||||||
a = numpy.array(im_deepcopy)
|
|
||||||
assert a.shape == (88, 590)
|
|
||||||
|
|
||||||
|
|
||||||
def test_bool():
|
def test_bool():
|
||||||
# https://github.com/python-pillow/Pillow/issues/2044
|
# https://github.com/python-pillow/Pillow/issues/2044
|
||||||
a = numpy.zeros((10, 2), dtype=bool)
|
a = numpy.zeros((10, 2), dtype=bool)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user