Skip flaky test in CI

Signed-off-by: Laura Brehm <laurabrehm@hey.com>
This commit is contained in:
Laura Brehm 2022-10-20 18:30:27 +02:00
parent 32ae036fd0
commit dd13299ede
No known key found for this signature in database
GPG Key ID: 526E3FC49260D47A
1 changed files with 4 additions and 0 deletions

View File

@ -21,6 +21,7 @@ package e2e
import (
"context"
"os"
"os/exec"
"syscall"
"testing"
@ -43,6 +44,9 @@ func TestUpServiceUnhealthy(t *testing.T) {
}
func TestUpDependenciesNotStopped(t *testing.T) {
if _, ok := os.LookupEnv("CI"); ok {
t.Skip("Skipping test on CI... flaky")
}
c := NewParallelCLI(t, WithEnv(
"COMPOSE_PROJECT_NAME=up-deps-stop",
))