From ddceb1ac9d10746ad719d9ebb3140aa78ad224fc Mon Sep 17 00:00:00 2001 From: Milas Bowman Date: Tue, 18 Jul 2023 18:54:23 -0400 Subject: [PATCH] test: do not run watch e2e tests in parallel This isn't playing nicely with the GHA CI runner. Signed-off-by: Milas Bowman --- pkg/e2e/watch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/e2e/watch_test.go b/pkg/e2e/watch_test.go index 6c7e0e0d..5c0595ea 100644 --- a/pkg/e2e/watch_test.go +++ b/pkg/e2e/watch_test.go @@ -68,7 +68,7 @@ func doTest(t *testing.T, svcName string) { "COMPOSE_PROJECT_NAME=" + projName, } - cli := NewParallelCLI(t, WithEnv(env...)) + cli := NewCLI(t, WithEnv(env...)) cleanup := func() { cli.RunDockerComposeCmd(t, "down", svcName, "--timeout=0", "--remove-orphans", "--volumes")