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
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def test_cli_run_submit_succeeds_with_valid_pipeline_config(runner: CliRunner, t
HETA_APPLICATION_ID,
str(csv_path),
"--deadline",
(datetime.now(tz=UTC) + timedelta(seconds=5)).isoformat(),
(datetime.now(tz=UTC) + timedelta(seconds=60)).isoformat(),

Copilot AI Apr 17, 2026

Copy link

Choose a reason for hiding this comment

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

The PR description says the run deadline is increased to 60 seconds, but this test now sets the deadline to 5 minutes. Please align the implementation with the PR description (e.g., use ~60 seconds) or update the PR description/title to match the 5-minute change.

Copilot uses AI. Check for mistakes.
"--gpu-type",
"L4",
"--gpu-provisioning-mode",
Expand Down Expand Up @@ -261,7 +261,7 @@ def test_cli_run_submit_succeeds_with_valid_a100_config(runner: CliRunner, tmp_p
HETA_APPLICATION_ID,
str(csv_path),
"--deadline",
(datetime.now(tz=UTC) + timedelta(seconds=5)).isoformat(),
(datetime.now(tz=UTC) + timedelta(seconds=60)).isoformat(),

Copilot AI Apr 17, 2026

Copy link

Choose a reason for hiding this comment

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

The PR description says the run deadline is increased to 60 seconds, but this test now sets the deadline to 5 minutes. Please align the implementation with the PR description (e.g., use ~60 seconds) or update the PR description/title to match the 5-minute change.

Copilot uses AI. Check for mistakes.
"--gpu-type",
"A100",
"--gpu-provisioning-mode",
Expand Down
Loading