From 991e339cfa5cc781523fe2df94f48690433fdde6 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sat, 17 Jan 2026 16:30:52 -0600 Subject: [PATCH] fix: remove Redis config from test.exs - tests should mock Redis --- config/test.exs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/config/test.exs b/config/test.exs index 5413f22f..fb0ae1d4 100644 --- a/config/test.exs +++ b/config/test.exs @@ -46,11 +46,6 @@ config :towerops, ToweropsWeb.Endpoint, # Set environment identifier for runtime checks config :towerops, :env, :test -# Configure Redis/Valkey for testing -config :towerops, :redis, - host: "localhost", - port: 6379 - # Use mocks for testing config :towerops, ping_module: Towerops.Monitoring.PingMock,