fix: add support for additional kwargs in fakeredis #37

Merged
wakonig_k merged 2 commits from wakonig_k-patch-1 into main 2025-11-17 20:38:04 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -90,7 +90,7 @@ jobs:
uv pip install --system -e ./bec/bec_ipython_client
uv pip install --system -e ./bec/bec_server[dev]
uv pip install --system -e ./bec_widgets[dev,pyside6]
uv pip install --system -e ./tomcat_bec
uv pip install --system -e ./tomcat_bec[dev]
- name: Run Pytest with Coverage
id: coverage

View File

@@ -11,7 +11,7 @@ from typeguard import TypeCheckError
from tomcat_bec.devices.std_daq.std_daq_live_processing import StdDaqLiveProcessing
def fake_redis_server(host, port):
def fake_redis_server(host, port, **kwargs):
redis = fakeredis.FakeRedis()
return redis