src/img2pdf_test.py: skip test_miff_cmyk16 on s390x because of https://github.com/ImageMagick/ImageMagick/issues/8055

This commit is contained in:
Johannes Schauer Marin Rodrigues 2025-03-23 01:31:48 +01:00
parent c6d12d6239
commit a8cb28ba31
Signed by: josch
GPG key ID: F2CBA5C78FBD83E1

View file

@ -6443,6 +6443,10 @@ def test_miff_cmyk8(tmp_path_factory, miff_cmyk8_img, tiff_cmyk8_img, miff_cmyk8
sys.platform in ["win32"],
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(
tmp_path_factory, miff_cmyk16_img, tiff_cmyk16_img, miff_cmyk16_pdf
):