From 688fbc718e9881e0001f83176988659d01110350 Mon Sep 17 00:00:00 2001 From: mibe Date: Thu, 26 Sep 2024 09:16:15 +0100 Subject: [PATCH] #140 Fixed the localstack fixture --- tests/fixtures/localstack_fixture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fixtures/localstack_fixture.py b/tests/fixtures/localstack_fixture.py index a731213..6b3bb12 100644 --- a/tests/fixtures/localstack_fixture.py +++ b/tests/fixtures/localstack_fixture.py @@ -14,7 +14,7 @@ def run_localstack(backend_aware_onprem_database) -> tuple[str, str] | None: s3_port = 4566 container = docker_client.containers.run( image="localstack/localstack", - ports={s3_port: s3_port}, + # ports={s3_port: s3_port}, environment={'SERVICES': 's3'}, network=f'container:{container_info.container_name}', detach=True)