Browse Source

test: do not run watch e2e tests in parallel

This isn't playing nicely with the GHA CI runner.

Signed-off-by: Milas Bowman <[email protected]>
Milas Bowman 2 years ago
parent
commit
ddceb1ac9d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/e2e/watch_test.go

+ 1 - 1
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")