From a8cb28ba311ff4184cc4a2adde042a810b0f677a Mon Sep 17 00:00:00 2001
From: Johannes Schauer Marin Rodrigues <josch@mister-muffin.de>
Date: Sun, 23 Mar 2025 01:31:48 +0100
Subject: [PATCH] src/img2pdf_test.py: skip test_miff_cmyk16 on s390x because
 of https://github.com/ImageMagick/ImageMagick/issues/8055

---
 src/img2pdf_test.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/img2pdf_test.py b/src/img2pdf_test.py
index dea82fd..da4a519 100755
--- a/src/img2pdf_test.py
+++ b/src/img2pdf_test.py
@@ -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
 ):