Skip to content

Commit 0cf3be6

Browse files
authored
Merge pull request #805 from rumpl/nicer-skip
Make it more clear what and why is flaky
2 parents 185975b + 143b112 commit 0cf3be6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

e2e/cagent_exec_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func TestExec_OpenAI(t *testing.T) {
1919
}
2020

2121
func TestExec_OpenAI_ToolCall(t *testing.T) {
22-
t.Skip("flaky because of tool call ordering")
22+
t.Skip("flaky because of tool call arguments ordering, see #797")
2323

2424
out := cagentExec(t, "testdata/fs_tools.yaml", "How many files in testdata/working_dir? Only output the number.")
2525

@@ -39,7 +39,7 @@ func TestExec_Anthropic(t *testing.T) {
3939
}
4040

4141
func TestExec_Anthropic_ToolCall(t *testing.T) {
42-
t.Skip("flaky because of tool call ordering")
42+
t.Skip("flaky because of tool call arguments ordering, see #797")
4343

4444
out := cagentExec(t, "testdata/fs_tools.yaml", "--model=anthropic/claude-sonnet-4-0", "How many files in testdata/working_dir? Only output the number.")
4545

@@ -53,7 +53,7 @@ func TestExec_Gemini(t *testing.T) {
5353
}
5454

5555
func TestExec_Gemini_ToolCall(t *testing.T) {
56-
t.Skip("flaky because of tool call ordering")
56+
t.Skip("flaky because of tool call arguments ordering, see #797")
5757

5858
out := cagentExec(t, "testdata/fs_tools.yaml", "--model=google/gemini-2.5-flash", "How many files in testdata/working_dir? Only output the number.")
5959

0 commit comments

Comments
 (0)