From 214d4a97dda76bb2dbc1581a77fa0797d26bbbd0 Mon Sep 17 00:00:00 2001 From: Oliver Meyer Date: Fri, 27 Mar 2026 16:03:02 +0100 Subject: [PATCH] test: run heavy test on ubuntu-latest only --- tests/aignostics/application/cli_test.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/aignostics/application/cli_test.py b/tests/aignostics/application/cli_test.py index 1b5491f22..88142129d 100644 --- a/tests/aignostics/application/cli_test.py +++ b/tests/aignostics/application/cli_test.py @@ -486,6 +486,13 @@ def test_cli_run_submit_fails_on_missing_url(runner: CliRunner, tmp_path: Path, @pytest.mark.long_running @pytest.mark.flaky(retries=3, delay=5) @pytest.mark.timeout(timeout=60 * 10) +@pytest.mark.skipif( + (platform.system() == "Linux" and platform.machine() in {"aarch64", "arm64"}) + or (platform.system() in {"Darwin", "Windows"}), + reason=( + "Only run on Linux x86_64 / GitHub Actions ubuntu-latest to avoid creating unnecessary load on the platform." + ), +) def test_cli_run_submit_and_describe_and_cancel_and_download_and_delete( # noqa: PLR0915 runner: CliRunner, tmp_path: Path, silent_logging, record_property ) -> None: