From c5eea294aa64603c22f168167f3bc2f132482201 Mon Sep 17 00:00:00 2001 From: Paulo Bittencourt Date: Sat, 5 Oct 2024 20:25:12 -0400 Subject: [PATCH] ci: fix flaky TestForDeps tests (#1839) --- task_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/task_test.go b/task_test.go index bfd3c554..8b6a005e 100644 --- a/task_test.go +++ b/task_test.go @@ -2500,6 +2500,8 @@ func TestForDeps(t *testing.T) { Stderr: &buff, Silent: true, Force: true, + // Force output of each dep to be grouped together to prevent interleaving + OutputStyle: ast.Output{Name: "group"}, } require.NoError(t, e.Setup()) require.NoError(t, e.Run(context.Background(), &ast.Call{Task: test.name}))