-
Notifications
You must be signed in to change notification settings - Fork 5
fix(ci): unblock Full Lifecycle Tests workflow #592
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,6 @@ def test_agent_builds_csv_stats_project(self, initialized_workspace, cf): | |
| result = cf( | ||
| "work", "batch", "run", | ||
| "--all-ready", | ||
| "--execute", | ||
| "--engine", "react", | ||
| "--retry", "1", | ||
| timeout=1800, # 30 min ceiling | ||
|
|
@@ -68,7 +67,7 @@ def test_agent_task_status_after_execution(self, initialized_workspace, cf): | |
| """All tasks reach DONE or BLOCKED status — none stuck in IN_PROGRESS.""" | ||
| cf( | ||
| "work", "batch", "run", | ||
| "--all-ready", "--execute", "--engine", "react", | ||
| "--all-ready", "--engine", "react", | ||
| timeout=1800, | ||
| ) | ||
|
Comment on lines
68
to
72
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Assert batch execution success before checking task statuses. Line 68-72 runs Suggested fix- cf(
+ run_result = cf(
"work", "batch", "run",
"--all-ready", "--engine", "react",
timeout=1800,
)
+ assert run_result.returncode == 0, (
+ f"cf work batch run failed (exit {run_result.returncode}).\n"
+ f"stdout tail:\n{run_result.stdout[-1000:]}\n"
+ f"stderr:\n{run_result.stderr[-500:]}"
+ )🤖 Prompt for AI Agents |
||
|
|
||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: frankbria/codeframe
Length of output: 326
🏁 Script executed:
Repository: frankbria/codeframe
Length of output: 5889
Pin
actions/upload-artifactto a full commit SHA.Line 91 uses a mutable tag (
@v4), which weakens supply-chain security and provenance guarantees.Suggested fix
🧰 Tools
🪛 zizmor (1.25.2)
[error] 91-91: unpinned action reference (unpinned-uses): action is not pinned to a hash (required by blanket policy)
(unpinned-uses)
🤖 Prompt for AI Agents