src/img2pdf_test.py: skip test_miff_cmyk16 on s390x because of https://github.com/ImageMagick/ImageMagick/issues/8055
This commit is contained in:
parent
c6d12d6239
commit
a8cb28ba31
1 changed files with 4 additions and 0 deletions
|
@ -6443,6 +6443,10 @@ def test_miff_cmyk8(tmp_path_factory, miff_cmyk8_img, tiff_cmyk8_img, miff_cmyk8
|
||||||
sys.platform in ["win32"],
|
sys.platform in ["win32"],
|
||||||
reason="test utilities not available on Windows and MacOS",
|
reason="test utilities not available on Windows and MacOS",
|
||||||
)
|
)
|
||||||
|
@pytest.mark.skipif(
|
||||||
|
platform.machine() == "s390x",
|
||||||
|
reason="https://github.com/ImageMagick/ImageMagick/issues/8055",
|
||||||
|
)
|
||||||
def test_miff_cmyk16(
|
def test_miff_cmyk16(
|
||||||
tmp_path_factory, miff_cmyk16_img, tiff_cmyk16_img, miff_cmyk16_pdf
|
tmp_path_factory, miff_cmyk16_img, tiff_cmyk16_img, miff_cmyk16_pdf
|
||||||
):
|
):
|
||||||
|
|
Loading…
Reference in a new issue