Skip to content

Commit c9d2eda

Browse files
committed
Revise Tests for 2025b Onboarding: PandocMissing
1 parent 1a10d6b commit c9d2eda

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/containers/workbenches/jupyterlab/jupyterlab_test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ def test_pdf_export(self, jupyterlab_image: conftest.Image) -> None:
6161
container.start(wait_for_readiness=False)
6262
try:
6363
exit_code, arch_output = container.exec(["uname", "-m"])
64-
if exit_code == 0 and arch_output.decode().strip() == "s390x":
65-
pytest.skip("PDF export functionality is not supported on s390x architecture")
64+
arch = arch_output.decode().strip()
65+
if exit_code == 0 and arch in ("s390x", "ppc64le"):
66+
pytest.skip("PDF export functionality is not supported on s390x/ppc64le architecture")
6667
finally:
6768
docker_utils.NotebookContainer(container).stop(timeout=0)
6869
test_file_name = "test.ipybn"

0 commit comments

Comments
 (0)