Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions tests/aignostics/application/cli_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."
),
)
Comment on lines +489 to +495

Copilot AI Mar 27, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The skip condition is OS/arch-based (runs on any Linux x86_64), but the skip reason says it will run only on the ubuntu-latest runner. Consider either tightening the condition (e.g., also check GITHUB_ACTIONS/runner env) or rewording the reason to match the actual behavior (e.g., “run only on Linux x86_64 / GitHub Actions ubuntu-latest”).

Copilot uses AI. Check for mistakes.
Comment thread
olivermeyer marked this conversation as resolved.
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:
Expand Down
Loading