Skip to content

Commit 01e1ec2

Browse files
committed
test: run heavy test on ubuntu-latest only
1 parent 3f06055 commit 01e1ec2

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

tests/aignostics/application/cli_test.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,6 +486,13 @@ def test_cli_run_submit_fails_on_missing_url(runner: CliRunner, tmp_path: Path,
486486
@pytest.mark.long_running
487487
@pytest.mark.flaky(retries=3, delay=5)
488488
@pytest.mark.timeout(timeout=60 * 10)
489+
@pytest.mark.skipif(
490+
(platform.system() == "Linux" and platform.machine() in {"aarch64", "arm64"})
491+
or (platform.system() in {"Darwin", "Windows"}),
492+
reason=(
493+
"Only run on Linux x86_64 / GitHub Actions ubuntu-latest to avoid creating unnecessary load on the platform."
494+
),
495+
)
489496
def test_cli_run_submit_and_describe_and_cancel_and_download_and_delete( # noqa: PLR0915
490497
runner: CliRunner, tmp_path: Path, silent_logging, record_property
491498
) -> None:

0 commit comments

Comments
 (0)