chore: skip cluster tests

This commit is contained in:
Manuel de la Peña
2025-05-23 12:30:26 +02:00
parent ba248c9967
commit 4c19cbad89
3 changed files with 5 additions and 3 deletions

View File

@@ -397,7 +397,8 @@ func Test_Redis_Universal_With_HostPort_And_URL(t *testing.T) {
} }
func Test_Redis_Cluster(t *testing.T) { func Test_Redis_Cluster(t *testing.T) {
// TODO: Replace with containerized cluster when testcontainers-go Redis module supports clustering t.Skip("TODO: Replace with containerized cluster when testcontainers-go Redis module supports clustering")
testStoreUniversal := New(Config{ testStoreUniversal := New(Config{
Addrs: []string{ Addrs: []string{
"localhost:7000", "localhost:7000",

View File

@@ -278,7 +278,8 @@ func Test_Rueidis_With_TLS_URL(t *testing.T) {
} }
func Test_Rueidis_Cluster(t *testing.T) { func Test_Rueidis_Cluster(t *testing.T) {
// TODO: Replace with containerized cluster when testcontainers-go Rueidis module supports clustering t.Skip("TODO: Replace with containerized cluster when testcontainers-go Redis module supports clustering")
store := New(Config{ store := New(Config{
InitAddress: []string{ InitAddress: []string{
"localhost:7000", "localhost:7000",

View File

@@ -302,7 +302,7 @@ func Test_Valkey_With_TLS_URL(t *testing.T) {
func Test_Valkey_Cluster(t *testing.T) { func Test_Valkey_Cluster(t *testing.T) {
t.Skip("TODO: Replace with containerized cluster when testcontainers-go Valkey module supports clustering") t.Skip("TODO: Replace with containerized cluster when testcontainers-go Valkey module supports clustering")
// TODO: Replace with containerized cluster when testcontainers-go Valkey module supports clustering
store := New(Config{ store := New(Config{
InitAddress: []string{ InitAddress: []string{
"localhost:7000", "localhost:7000",