diff --git a/tests/containers/workbenches/jupyterlab/jupyterlab_test.py b/tests/containers/workbenches/jupyterlab/jupyterlab_test.py index cbc9a0bf73..565f2f1e23 100644 --- a/tests/containers/workbenches/jupyterlab/jupyterlab_test.py +++ b/tests/containers/workbenches/jupyterlab/jupyterlab_test.py @@ -57,12 +57,13 @@ def test_spinner_html_loaded(self, jupyterlab_image: conftest.Image) -> None: @allure.description("Check that PDF export is working correctly") def test_pdf_export(self, jupyterlab_image: conftest.Image) -> None: container = WorkbenchContainer(image=jupyterlab_image.name, user=4321, group_add=[0]) - # Skip if we're running on s390x architecture + # Skip if we're running architectures where PDF export is not supported container.start(wait_for_readiness=False) try: exit_code, arch_output = container.exec(["uname", "-m"]) - if exit_code == 0 and arch_output.decode().strip() == "s390x": - pytest.skip("PDF export functionality is not supported on s390x architecture") + arch = arch_output.decode().strip() + if exit_code == 0 and arch in ("s390x", "ppc64le"): + pytest.skip("PDF export functionality is not supported on s390x/ppc64le architecture") finally: docker_utils.NotebookContainer(container).stop(timeout=0) test_file_name = "test.ipybn"