From 7e18b18a5ee5fa861846406953ea8e1fa98c66f3 Mon Sep 17 00:00:00 2001 From: David Onuh Date: Mon, 17 Jun 2024 10:06:11 +0100 Subject: [PATCH] debug: print out host and port from env --- sdk/ahnlich-client-py/tests/conftest.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdk/ahnlich-client-py/tests/conftest.py b/sdk/ahnlich-client-py/tests/conftest.py index f1bd259b..e27b185c 100644 --- a/sdk/ahnlich-client-py/tests/conftest.py +++ b/sdk/ahnlich-client-py/tests/conftest.py @@ -3,10 +3,9 @@ import os - - @pytest.fixture def base_protocol(): host = os.environ.get("AHNLICH_DB_HOST", "127.0.0.1") port = int(os.environ.get("AHNLICH_DB_PORT", 1369)) + print(host, port) return protocol.AhnlichProtocol(address=host, port=port)