From df0ccad74fa18d43b23cabe45a9bf268459e4151 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 21 Jun 2022 10:21:26 +0300 Subject: Rename fixture: fixture gives back the redis url, not a server --- tests/conftest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/conftest.py') diff --git a/tests/conftest.py b/tests/conftest.py index 0072f26..9755a47 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -21,7 +21,7 @@ def is_port_in_use(port: int) -> bool: return sckt.connect_ex(("localhost", port)) == 0 @pytest.fixture(scope="session") -def redis_server(): +def redis_url(): "Fixture to launch a new redis instance and return appropriate URI" port = next(# pylint: disable=[stop-iteration-return] port for port in range(6379,65535) if not is_port_in_use(port)) @@ -32,11 +32,11 @@ def redis_server(): process.kill() @pytest.fixture(scope="module") -def client(redis_server): # pylint: disable=[redefined-outer-name] +def client(redis_url): # pylint: disable=[redefined-outer-name] "Fixture for test client" app = create_app(f"{os.path.abspath('.')}/tests/test_instance_dir") app.config.update({ - "REDIS_URL": redis_server + "REDIS_URL": redis_url }) yield app.test_client() -- cgit v1.2.3