From 1896cc2fe0d4a4a5a0021f08b8e4ed86e510d9d2 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Mon, 17 Nov 2025 20:33:08 +0100 Subject: [PATCH 1/2] fix: add support for additional kwargs in fakeredis --- tests/tests_devices/test_std_daq_live_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests_devices/test_std_daq_live_processing.py b/tests/tests_devices/test_std_daq_live_processing.py index 991066e..18d1c9f 100644 --- a/tests/tests_devices/test_std_daq_live_processing.py +++ b/tests/tests_devices/test_std_daq_live_processing.py @@ -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 -- 2.49.1 From 354557262b742ac161321bd6a88266db786a3801 Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Mon, 17 Nov 2025 20:36:51 +0100 Subject: [PATCH 2/2] ci: install dev dependencies --- .gitea/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index fa67282..4f8fbf6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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 -- 2.49.1