From 862a39a96a65d74879ae1766b59aeebc85f6ecec Mon Sep 17 00:00:00 2001 From: Alexander Yastrebov Date: Fri, 14 Jul 2023 00:00:55 +0200 Subject: [PATCH] Skip tests using net/redistest Redis testcontainer fails to start due to due to https://github.com/testcontainers/testcontainers-go/issues/1359 caused by https://github.com/golang/go/issues/61076 and we can not pin cdp-runtime/go to a working patch version before 1.20.6 Signed-off-by: Alexander Yastrebov --- net/redistest/redistest.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net/redistest/redistest.go b/net/redistest/redistest.go index 8ca22cfb85..5552c599f9 100644 --- a/net/redistest/redistest.go +++ b/net/redistest/redistest.go @@ -15,6 +15,9 @@ func NewTestRedis(t testing.TB) (address string, done func()) { } func NewTestRedisWithPassword(t testing.TB, password string) (address string, done func()) { + + t.Skip("https://github.com/testcontainers/testcontainers-go/issues/1359") + var args []string if password != "" { args = append(args, "--requirepass", password)