Skip to content

Commit

Permalink
debug: print out host and port from env
Browse files Browse the repository at this point in the history
  • Loading branch information
Iamdavidonuh committed Jun 17, 2024
1 parent b2877c4 commit 7e18b18
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sdk/ahnlich-client-py/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 7e18b18

Please sign in to comment.