Skip to content

Commit

Permalink
chore: skip TestContainerLogWithErrClosed as flaky on rootless docker
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Nov 24, 2023
1 parent 2869eab commit 51c5eb7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions logconsumer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
"fmt"
"io"
"net/http"
"os"
"strings"
"testing"
"time"
Expand Down Expand Up @@ -290,6 +291,10 @@ func Test_StartStop(t *testing.T) {
}

func TestContainerLogWithErrClosed(t *testing.T) {
if os.Getenv("XDG_RUNTIME_DIR") != "" {
t.Skip("Skipping as flaky on GitHub Actions, Please see https://github.com/testcontainers/testcontainers-go/issues/1924")
}

t.Cleanup(func() {
config.Reset()
})
Expand Down

0 comments on commit 51c5eb7

Please sign in to comment.