feat: implemented forced speech and speech queue

This commit is contained in:
Luijkx,S.O.H. (Storm)
2026-01-14 14:26:38 +00:00
committed by Pim Hutting
parent 1e77548622
commit e51cf8fe65
7 changed files with 345 additions and 33 deletions

10
test/conftest.py Normal file
View File

@@ -0,0 +1,10 @@
from mock import patch, MagicMock
import pytest
@pytest.fixture(autouse=True)
def mock_zmq_context():
with patch("zmq.Context") as mock:
mock.instance.return_value = MagicMock()
yield mock