Skip to content

Commit

Permalink
Merge pull request #9933 from laurazard/skip-flaky-test
Browse files Browse the repository at this point in the history
Skip flaky test in CI `merge` workflow
  • Loading branch information
laurazard committed Oct 20, 2022
2 parents 32ae036 + dd13299 commit 2978f1a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/e2e/up_test.go
Expand Up @@ -21,6 +21,7 @@ package e2e

import (
"context"
"os"
"os/exec"
"syscall"
"testing"
Expand All @@ -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",
))
Expand Down

0 comments on commit 2978f1a

Please sign in to comment.