From 1cc047d3b842da15ead54b5f4fd4d991ace68589 Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Sun, 14 Sep 2025 20:40:10 +0200 Subject: [PATCH] removed unused bound ports for test --- tests/integration/conftest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 3f6daf9..e7547e5 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -33,9 +33,6 @@ def redis_container() -> Generator[str]: container = RedisContainer( image="redis/redis-stack:7.2.0-v0", port=6379, - ).with_bind_ports( - container=6379, - host=6379, ) container.start() # Set environment variable for Redis URI